diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000..269ac8a71
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+node_modules
+node_modules/
+*/node_modules/
+build
+build/
+*/build/
\ No newline at end of file
diff --git a/.rubocop.yml b/.rubocop.yml
new file mode 100644
index 000000000..63291716e
--- /dev/null
+++ b/.rubocop.yml
@@ -0,0 +1,60 @@
+AllCops:
+ Exclude:
+ - "db/**/*"
+ - "bin/*"
+ - "config/**/*"
+ - "Guardfile"
+ - "Rakefile"
+ - "README.md"
+ - "node_modules/**/*"
+
+ DisplayCopNames: true
+
+Layout/LineLength:
+ Max: 120
+Metrics/MethodLength:
+ Include:
+ - "app/controllers/*"
+ - "app/models/*"
+ Max: 20
+Metrics/AbcSize:
+ Include:
+ - "app/controllers/*"
+ - "app/models/*"
+ Max: 50
+Metrics/ClassLength:
+ Max: 150
+Metrics/BlockLength:
+ ExcludedMethods: ['describe']
+ Max: 30
+
+Style/Documentation:
+ Enabled: false
+Style/ClassAndModuleChildren:
+ Enabled: false
+Style/EachForSimpleLoop:
+ Enabled: false
+Style/AndOr:
+ Enabled: false
+Style/DefWithParentheses:
+ Enabled: false
+Style/FrozenStringLiteralComment:
+ EnforcedStyle: never
+
+Layout/HashAlignment:
+ EnforcedColonStyle: key
+Layout/ExtraSpacing:
+ AllowForAlignment: false
+Layout/MultilineMethodCallIndentation:
+ Enabled: true
+ EnforcedStyle: indented
+Lint/RaiseException:
+ Enabled: false
+Lint/StructNewOverride:
+ Enabled: false
+Style/HashEachMethods:
+ Enabled: false
+Style/HashTransformKeys:
+ Enabled: false
+Style/HashTransformValues:
+ Enabled: false
\ No newline at end of file
diff --git a/.stickler.yml b/.stickler.yml
new file mode 100644
index 000000000..cf5f9f0ff
--- /dev/null
+++ b/.stickler.yml
@@ -0,0 +1,22 @@
+# add the linters you want stickler to use for this project
+linters:
+ rubocop:
+ display_cop_names: true
+ # indicate where is the config file for rubocop
+ config: './rubocop.yml'
+
+# add the files here you want to be ignored by stickler
+files:
+ ignore:
+ - "bin/*"
+ - "db/*"
+ - "config/*"
+ - "Guardfile"
+ - "Rakefile"
+ - "README.md"
+ - "node_modules/**/*"
+
+# PLEASE DO NOT enable auto fixing options
+# if you need extra support from you linter - do it in your local env as described in README for this config
+
+# find full documentation here: https://stickler-ci.com/docs
\ No newline at end of file
diff --git a/README.md b/README.md
index e69de29bb..76474d130 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,143 @@
+## [Live project](https://hosting-test-29639.firebaseapp.com/)
+
+[![Contributors][contributors-shield]][contributors-url]
+[![Forks][forks-shield]][forks-url]
+[![Stargazers][stars-shield]][stars-url]
+[![Issues][issues-shield]][issues-url]
+[![LinkedIn][linkedin-shield]][linkedin-url]
+
+
+
+
+
+
+
+
+
+
+
+ A simple online groups meetup webapp
+
+ Live API »
+ Live App »
+
+
+ Report Bug
+ ·
+ Request Feature
+
+
+
+
+## Table of Contents
+
+* [About](#about)
+* [About the App](#about-the-app)
+* [Navigation](#navigation)
+* [Characters](#characters)
+* [Views](#views)
+* [Routes](#routes)
+* [Prerequisites](#prerequisites)
+* [Built With](#built-with)
+* [Commands](#available-commands)
+* [Contact](#contact)
+* [Acknowledgements](#acknowledgements)
+* [CopyRight/Attributions](#copyRight/Attributions)
+
+
+## About
+
+This project is a Meetup-like site for online only meetings.
+
+
+
+
+## About The App
+
+-------
+
+## Navigation
+
+-------
+
+## API Routes
+
+| Route | Verb | Description |
+|---------|-------------|-------------|
+| `/meets` | GET | Index of Meetups |
+| `/meets` | POST | Cretion of new Meetup |
+| `/meets/:meet_id` | GET | View Meetup by id |
+| `/meets/:meet_id` | PUT | Edit Meetup |
+| `/meets/:meet_id` | DELETE | Delete Meetup |
+| `/meets/:meet_id/meetings` | GET | Index of Meetings from a Meetup |
+| `/meets/:meet_id/meetings` | POST | Cretion of Meetup Meeting |
+| `/meets/:meet_id/meetings` | PUT | Edit Meetup Meeting |
+| `/meets/:meet_id/meetings` | DELETE | Delete Meetup Meeting |
+| `/user_meets` | POST | Creation of new favorited Meetup relation by an User |
+| `/user_meets/meets/:user_id` | GET | Index of Meetups favorited by User |
+| `/user_meets/meets/:meet_id` | GET | Index of Users that favorited a Meetup |
+| `/auth/login` | POST | Authentication of existing User |
+| `/auth/signup` | POST | Creation of new User |
+| `/users` | GET | Index of Users |
+| `/users/:id` | GET | Show spedific User by id |
+
+-------
+
+
+## Client Routes
+
+| Route | Description |
+|---------|-------------|
+| `/` | Landing Page |
+| `/sign_up` | User Signup |
+| `/sign_in` | User Login |
+| `/list` | List of Meetups |
+| `/details/:id` | Details of Meetup
+| `/search/:term` | Search page of Meetups |
+| `/favorites` | List of Favorited Meetups
+| `/messages` | Chat (Not working)
+
+-------
+
+## Prerequisites
+
+Run the app folder in the port 3000, and api server on port 3001.
+
+For a better review experience run db:seeds beforehand.
+
+-------
+
+### Built With
+
+
+## Available Commands
+
+-------
+
+## Contact
+
+-------
+
+## Acknowledgements
+
+## CopyRight/Attributions
+
+-------
+
+[contributors-shield]: https://img.shields.io/github/contributors/othneildrew/Best-README-Template.svg?style=flat-square
+[contributors-url]: https://github.com/uryelah/rails-react-capstone-project/graphs/contributors
+[forks-shield]: https://img.shields.io/github/forks/othneildrew/Best-README-Template.svg?style=flat-square
+[forks-url]: https://github.com/uryelah/rails-react-capstone-project/network/members
+[stars-shield]: https://img.shields.io/github/stars/othneildrew/Best-README-Template.svg?style=flat-square
+[stars-url]: https://github.com/uryelah/rails-react-capstone-project/stargazers
+[issues-shield]: https://img.shields.io/github/issues/othneildrew/Best-README-Template.svg?style=flat-square
+[issues-url]: https://github.com/uryelah/rails-react-capstone-project/issues
+[license-shield]: https://img.shields.io/github/license/othneildrew/Best-README-Template.svg?style=flat-square
+[license-url]: https://github.com/uryelah/rails-react-capstone-project/blob/master/LICENSE.txt
+[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=flat-square&logo=linkedin&colorB=555
+[linkedin-url]: https://www.linkedin.com/in/uryelah/
+[product-screenshot]: ./public/aokanji.gif
diff --git a/api/.env b/api/.env
new file mode 100644
index 000000000..355940b4d
--- /dev/null
+++ b/api/.env
@@ -0,0 +1,4 @@
+RAILS_ENV=production
+PUSH_HEROKU=git subtree push --prefix api heroku master
+SECRET_KEY_BASE=b964b6286b88027fec9caf9fe200d8ccb219549f255877e85f905da9790fad6bc483627beaef7eb37df3f80c3f38ae040c9988c3123d561e2c6fed4607503c12
+HMAC_SECRET=b964b6286b88027fec9caf9fe200d8ccb219549f255877e85f905da9790fad6bc483627beaef7eb37df3f80c3f38ae040c9988c3123d561e2c6fed4607503c12
\ No newline at end of file
diff --git a/api/.rspec b/api/.rspec
new file mode 100644
index 000000000..c99d2e739
--- /dev/null
+++ b/api/.rspec
@@ -0,0 +1 @@
+--require spec_helper
diff --git a/api/Gemfile b/api/Gemfile
index 46d1ea70a..e87e74d02 100644
--- a/api/Gemfile
+++ b/api/Gemfile
@@ -1,4 +1,4 @@
-source 'https://rubygems.org'
+source 'https://rubygems.org' # rubocop:disable Layout/EndOfLine
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.5'
@@ -6,32 +6,50 @@ ruby '2.6.5'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.2', '>= 6.0.2.2'
# Use sqlite3 as the database for Active Record
-gem 'sqlite3', '~> 1.4'
# Use Puma as the app server
gem 'puma', '~> 4.1'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.7'
+gem 'foreman'
+
+gem 'rails_12factor', group: 'production'
+
+gem 'devise'
# Use Redis adapter to run Action Cable in production
-# gem 'redis', '~> 4.0'
+gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
-# gem 'bcrypt', '~> 3.1.7'
+gem 'bcrypt', '~> 3.1.7'
+
+gem 'active_model_serializers', '~> 0.10.0'
+gem 'jwt'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
+gem 'rubocop'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
-# gem 'rack-cors'
+gem 'rack-cors'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
- gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
+ gem 'byebug', platforms: %i[mri mingw x64_mingw]
+ gem 'rspec-rails', '~> 3.5'
+ gem 'sqlite3', '~> 1.4'
+end
+
+group :test do
+ gem 'database_cleaner'
+ gem 'factory_bot_rails', '~> 4.0'
+ gem 'faker'
+ gem 'shoulda-matchers', '~> 3.1'
end
-group :development do
+group :production do
+ gem 'pg'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
-gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
+gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
diff --git a/api/Gemfile.lock b/api/Gemfile.lock
index 819137233..1f23f9fb6 100644
--- a/api/Gemfile.lock
+++ b/api/Gemfile.lock
@@ -37,6 +37,11 @@ GEM
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
+ active_model_serializers (0.10.10)
+ actionpack (>= 4.1, < 6.1)
+ activemodel (>= 4.1, < 6.1)
+ case_transform (>= 0.2)
+ jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
activejob (6.0.2.2)
activesupport (= 6.0.2.2)
globalid (>= 0.3.6)
@@ -56,17 +61,40 @@ GEM
minitest (~> 5.1)
tzinfo (~> 1.1)
zeitwerk (~> 2.2)
+ ast (2.4.0)
+ bcrypt (3.1.13)
bootsnap (1.4.6)
msgpack (~> 1.0)
builder (3.2.4)
- byebug (11.1.2)
+ byebug (11.1.3)
+ case_transform (0.2)
+ activesupport
concurrent-ruby (1.1.6)
crass (1.0.6)
+ database_cleaner (1.8.4)
+ devise (4.7.1)
+ bcrypt (~> 3.0)
+ orm_adapter (~> 0.1)
+ railties (>= 4.1.0)
+ responders
+ warden (~> 1.2.3)
+ diff-lcs (1.3)
erubi (1.9.0)
+ factory_bot (4.11.1)
+ activesupport (>= 3.0.0)
+ factory_bot_rails (4.11.1)
+ factory_bot (~> 4.11.1)
+ railties (>= 3.0.0)
+ faker (2.11.0)
+ i18n (>= 1.6, < 2)
+ foreman (0.87.1)
globalid (0.4.2)
activesupport (>= 4.2.0)
i18n (1.8.2)
concurrent-ruby (~> 1.0)
+ jaro_winkler (1.5.4)
+ jsonapi-renderer (0.2.2)
+ jwt (2.2.1)
loofah (2.5.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
@@ -83,9 +111,16 @@ GEM
nio4r (2.5.2)
nokogiri (1.10.9-x64-mingw32)
mini_portile2 (~> 2.4.0)
+ orm_adapter (0.5.0)
+ parallel (1.19.1)
+ parser (2.7.1.1)
+ ast (~> 2.4.0)
+ pg (1.2.3-x64-mingw32)
puma (4.3.3)
nio4r (~> 2.0)
rack (2.2.2)
+ rack-cors (1.1.1)
+ rack (>= 2.0.0)
rack-test (1.1.0)
rack (>= 1.0, < 3)
rails (6.0.2.2)
@@ -108,13 +143,52 @@ GEM
nokogiri (>= 1.6)
rails-html-sanitizer (1.3.0)
loofah (~> 2.3)
+ rails_12factor (0.0.3)
+ rails_serve_static_assets
+ rails_stdout_logging
+ rails_serve_static_assets (0.0.5)
+ rails_stdout_logging (0.0.5)
railties (6.0.2.2)
actionpack (= 6.0.2.2)
activesupport (= 6.0.2.2)
method_source
rake (>= 0.8.7)
thor (>= 0.20.3, < 2.0)
+ rainbow (3.0.0)
rake (13.0.1)
+ redis (4.1.4)
+ responders (3.0.0)
+ actionpack (>= 5.0)
+ railties (>= 5.0)
+ rexml (3.2.4)
+ rspec-core (3.9.1)
+ rspec-support (~> 3.9.1)
+ rspec-expectations (3.9.1)
+ diff-lcs (>= 1.2.0, < 2.0)
+ rspec-support (~> 3.9.0)
+ rspec-mocks (3.9.1)
+ diff-lcs (>= 1.2.0, < 2.0)
+ rspec-support (~> 3.9.0)
+ rspec-rails (3.9.1)
+ actionpack (>= 3.0)
+ activesupport (>= 3.0)
+ railties (>= 3.0)
+ rspec-core (~> 3.9.0)
+ rspec-expectations (~> 3.9.0)
+ rspec-mocks (~> 3.9.0)
+ rspec-support (~> 3.9.0)
+ rspec-support (3.9.2)
+ rubocop (0.82.0)
+ jaro_winkler (~> 1.5.1)
+ parallel (~> 1.10)
+ parser (>= 2.7.0.1)
+ rainbow (>= 2.2.2, < 4.0)
+ rexml
+ ruby-progressbar (~> 1.7)
+ unicode-display_width (>= 1.4.0, < 2.0)
+ ruby-progressbar (1.10.1)
+ shoulda-matchers (3.1.3)
+ activesupport (>= 4.0.0)
sprockets (4.0.0)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
@@ -129,6 +203,9 @@ GEM
thread_safe (~> 0.1)
tzinfo-data (1.2019.3)
tzinfo (>= 1.0.0)
+ unicode-display_width (1.7.0)
+ warden (1.2.8)
+ rack (>= 2.0.6)
websocket-driver (0.7.1)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.4)
@@ -138,10 +215,25 @@ PLATFORMS
x64-mingw32
DEPENDENCIES
+ active_model_serializers (~> 0.10.0)
+ bcrypt (~> 3.1.7)
bootsnap (>= 1.4.2)
byebug
+ database_cleaner
+ devise
+ factory_bot_rails (~> 4.0)
+ faker
+ foreman
+ jwt
+ pg
puma (~> 4.1)
+ rack-cors
rails (~> 6.0.2, >= 6.0.2.2)
+ rails_12factor
+ redis (~> 4.0)
+ rspec-rails (~> 3.5)
+ rubocop
+ shoulda-matchers (~> 3.1)
sqlite3 (~> 1.4)
tzinfo-data
diff --git a/api/Procfile b/api/Procfile
new file mode 100644
index 000000000..ab0e75b33
--- /dev/null
+++ b/api/Procfile
@@ -0,0 +1,2 @@
+web: bundle exec rails s
+release: bundle exec bin/rake db:migrate
\ No newline at end of file
diff --git a/api/app/auth/authenticate_user.rb b/api/app/auth/authenticate_user.rb
new file mode 100644
index 000000000..0c52cd0f6
--- /dev/null
+++ b/api/app/auth/authenticate_user.rb
@@ -0,0 +1,24 @@
+class AuthenticateUser
+ def initialize(email, password)
+ @email = email
+ @password = password
+ end
+
+ # Service entry point
+ def call
+ JsonWebToken.encode(user_id: user.id) if user
+ end
+
+ private
+
+ attr_reader :email, :password
+
+ # verify user credentials
+ def user
+ user = User.find_by(email: email)
+ return user if user&.authenticate(password)
+
+ # raise Authentication error if credentials are invalid
+ raise(ExceptionHandler::AuthenticationError, Message.invalid_credentials)
+ end
+end
diff --git a/api/app/auth/authorize_api_request.rb b/api/app/auth/authorize_api_request.rb
new file mode 100644
index 000000000..68a72444f
--- /dev/null
+++ b/api/app/auth/authorize_api_request.rb
@@ -0,0 +1,41 @@
+class AuthorizeApiRequest
+ def initialize(headers = {})
+ @headers = headers
+ end
+
+ # Service entry point - return valid user object
+ def call
+ {
+ user: user
+ }
+ end
+
+ private
+
+ attr_reader :headers
+
+ def user
+ # check if user is in the database
+ # memoize user object
+ @user ||= User.find(decoded_auth_token[:user_id]) if decoded_auth_token
+ # handle user not found
+ rescue ActiveRecord::RecordNotFound => e
+ # raise custom error
+ raise(
+ ExceptionHandler::InvalidToken,
+ ("#{Message.invalid_token} #{e.message}")
+ )
+ end
+
+ # decode authentication token
+ def decoded_auth_token
+ @decoded_auth_token ||= JsonWebToken.decode(http_auth_header)
+ end
+
+ # check for token in `Authorization` header
+ def http_auth_header
+ return headers['Authorization'].split(' ').last if headers['Authorization'].present?
+
+ raise(ExceptionHandler::MissingToken, Message.missing_token)
+ end
+end
diff --git a/api/app/controllers/application_controller.rb b/api/app/controllers/application_controller.rb
index 4ac8823b0..470568ebc 100644
--- a/api/app/controllers/application_controller.rb
+++ b/api/app/controllers/application_controller.rb
@@ -1,2 +1,15 @@
class ApplicationController < ActionController::API
+ include Response
+ include ExceptionHandler
+
+ # called before every action on controllers
+ before_action :authorize_request
+ attr_reader :current_user
+
+ private
+
+ # Check for valid request token and return user
+ def authorize_request
+ @current_user = AuthorizeApiRequest.new(request.headers).call[:user]
+ end
end
diff --git a/api/app/controllers/authentication_controller.rb b/api/app/controllers/authentication_controller.rb
new file mode 100644
index 000000000..80730bcc1
--- /dev/null
+++ b/api/app/controllers/authentication_controller.rb
@@ -0,0 +1,19 @@
+class AuthenticationController < ApplicationController
+ skip_before_action :authorize_request, only: :authenticate
+ # return auth token once user is authenticated
+ def authenticate
+ auth_token =
+ AuthenticateUser.new(auth_params[:email], auth_params[:password]).call
+
+ user = User.find_by(email: auth_params[:email]) if auth_token
+
+ json_response(auth_token: auth_token, user:
+ { picture: user.picture, email: user.email, id: user.id, name: user.name })
+ end
+
+ private
+
+ def auth_params
+ params.permit(:email, :password)
+ end
+end
diff --git a/api/app/controllers/concerns/exception_handler.rb b/api/app/controllers/concerns/exception_handler.rb
new file mode 100644
index 000000000..e5eeae763
--- /dev/null
+++ b/api/app/controllers/concerns/exception_handler.rb
@@ -0,0 +1,32 @@
+module ExceptionHandler
+ extend ActiveSupport::Concern
+
+ # Define custom error subclasses - rescue catches `StandardErrors`
+ class AuthenticationError < StandardError; end
+ class MissingToken < StandardError; end
+ class InvalidToken < StandardError; end
+
+ included do
+ # Define custom handlers
+ rescue_from ActiveRecord::RecordInvalid, with: :four_twenty_two
+ rescue_from ExceptionHandler::AuthenticationError, with: :unauthorized_request
+ rescue_from ExceptionHandler::MissingToken, with: :four_twenty_two
+ rescue_from ExceptionHandler::InvalidToken, with: :four_twenty_two
+
+ rescue_from ActiveRecord::RecordNotFound do |e|
+ json_response({ message: e.message }, :not_found)
+ end
+ end
+
+ private
+
+ # JSON response with message; Status code 422 - unprocessable entity
+ def four_twenty_two(evt)
+ json_response({ message: evt.message }, :unprocessable_entity)
+ end
+
+ # JSON response with message; Status code 401 - Unauthorized
+ def unauthorized_request(evt)
+ json_response({ message: evt.message }, :unauthorized)
+ end
+end
diff --git a/api/app/controllers/concerns/response.rb b/api/app/controllers/concerns/response.rb
new file mode 100644
index 000000000..cfb0caa40
--- /dev/null
+++ b/api/app/controllers/concerns/response.rb
@@ -0,0 +1,5 @@
+module Response
+ def json_response(object, status = :ok)
+ render json: object, status: status
+ end
+end
diff --git a/api/app/controllers/meetings_controller.rb b/api/app/controllers/meetings_controller.rb
new file mode 100644
index 000000000..fb72ffe5c
--- /dev/null
+++ b/api/app/controllers/meetings_controller.rb
@@ -0,0 +1,46 @@
+class MeetingsController < ApplicationController
+ before_action :set_meet
+ before_action :set_meet_meeting, only: %i[show update destroy]
+
+ # GET /meets/:meet_id/meetings
+ def index
+ json_response(@meet.meetings)
+ end
+
+ # GET /meets/:meet_id/meetings/:id
+ def show
+ json_response(@meeting)
+ end
+
+ # POST /meets/:meet_id/meetings
+ def create
+ @meet.meetings.create!(meeting_params)
+ json_response(@meet, :created)
+ end
+
+ # PUT /meets/:meet_id/meetings/:id
+ def update
+ @meeting.update(meeting_params)
+ head :no_content
+ end
+
+ # DELETE /meets/:meet_id/meetings/:id
+ def destroy
+ @meeting.destroy
+ head :no_content
+ end
+
+ private
+
+ def meeting_params
+ params.permit(:title, :description, :date, :link)
+ end
+
+ def set_meet
+ @meet = Meet.find(params[:meet_id])
+ end
+
+ def set_meet_meeting
+ @meeting = @meet.meetings.find_by!(id: params[:id]) if @meet
+ end
+end
diff --git a/api/app/controllers/meets_controller.rb b/api/app/controllers/meets_controller.rb
new file mode 100644
index 000000000..08b7bb545
--- /dev/null
+++ b/api/app/controllers/meets_controller.rb
@@ -0,0 +1,52 @@
+class MeetsController < ApplicationController
+ before_action :set_meet, only: %i[show update destroy]
+
+ # GET /meets
+ def index
+ @meets = Meet.all
+ json_response(@meets)
+ end
+
+ # POST /meets
+ def create
+ @meet = current_user.meets.create!(meet_params)
+ json_response(@meet, :created)
+ end
+
+ # GET /meets/:id
+ def show
+ @user = User.find(@meet.created_by)
+ @meetings = @meet.meetings
+
+ json_response({ meet: @meet, user: @user, meetings: @meetings })
+ end
+
+ # PUT /meets/:id
+ def update
+ @meet.update(meet_params)
+ head :no_content
+ end
+
+ # DELETE /meets/:id
+ def destroy
+ @meet.destroy
+ head :no_content
+ end
+
+ def search
+ search_term = params[:term]
+ @meets = Meet.where('title like ? OR description like ?', "%#{search_term}%", "%#{search_term}%")
+ json_response(@meets)
+ end
+
+ private
+
+ def meet_params
+ # whitelist params
+ params.permit(:title, :description, :frequency, :duration, :day, :max_members, :created_by)
+ end
+
+ def set_meet
+ @meet = Meet.find(params[:id])
+ end
+end
diff --git a/api/app/controllers/user_meets_controller.rb b/api/app/controllers/user_meets_controller.rb
new file mode 100644
index 000000000..85a6f24b4
--- /dev/null
+++ b/api/app/controllers/user_meets_controller.rb
@@ -0,0 +1,45 @@
+class UserMeetsController < ApplicationController
+ skip_before_action :authorize_request
+ def index
+ @user_meets = UserMeet.all
+ json_response(@user_meets)
+ end
+
+ def create
+ @user_meet = UserMeet.create!(user_meet_params)
+ json_response(@user_meet, :created)
+ end
+
+ def show
+ if params[:user_id]
+ @user_meet = UserMeet.where(user_id: params[:user_id])
+ @res = []
+
+ @user_meet.each do |n|
+ @res << Meet.find(n.meet_id)
+ end
+
+ end
+ if params[:meet_id]
+ @user_meet = UserMeet.where(meet_id: params[:meet_id])
+ @res = []
+
+ @user_meet.each do |n|
+ @res << User.find(n.user_id)
+ end
+ end
+
+ json_response({ res: @res })
+ end
+
+ def destroy
+ UserMeet.find(params[:id]).destroy
+ head :no_content
+ end
+
+ private
+
+ def user_meet_params
+ params.permit(:user_id, :meet_id)
+ end
+end
diff --git a/api/app/controllers/users_controller.rb b/api/app/controllers/users_controller.rb
new file mode 100644
index 000000000..d50b46ed1
--- /dev/null
+++ b/api/app/controllers/users_controller.rb
@@ -0,0 +1,47 @@
+class UsersController < ApplicationController
+ skip_before_action :authorize_request, only: %i[create index]
+ def create
+ user = User.new(email: params[:email],
+ password: params[:password],
+ password_confirmation: params[:password_confirmation],
+ name: params[:name],
+ picture: "https://joeschmoe.io/api/v1/#{name_me}")
+
+ user.save
+
+ auth_token = AuthenticateUser.new(user.email, user.password).call
+ response = { message: Message.account_created, auth_token: auth_token, user: user }
+ json_response(response, :created)
+ end
+
+ def index
+ @users = User.all
+ json_response(@users)
+ end
+
+ def show
+ @user = User.find(params[:id])
+ json_response(@user)
+ end
+
+ private
+
+ def name_me
+ people = %w[
+ jabala jane jenni josephine jake jerry jai julie jude jack jolee jean jon jacques
+ josh jaqueline james jess jazebelle jeri joe jana jodi jordan jocelyn jeane jed jia
+ ]
+
+ people.sample
+ end
+
+ def user_params
+ params.permit(
+ :name,
+ :email,
+ :picture,
+ :password,
+ :password_confirmation
+ )
+ end
+end
diff --git a/api/app/lib/json_web_token.rb b/api/app/lib/json_web_token.rb
new file mode 100644
index 000000000..0eecb8750
--- /dev/null
+++ b/api/app/lib/json_web_token.rb
@@ -0,0 +1,20 @@
+class JsonWebToken
+ # secret to encode and decode token
+ HMAC_SECRET = Rails.env == 'test' ? 'aj3oiro23r92f93gd98y0970980931' : ENV['SECRET_KEY_BASE']
+
+ def self.encode(payload, exp = 1.year.from_now)
+ # set expiry to 24 hours from creation time
+ payload[:exp] = exp.to_i
+ # sign token with application secret
+ JWT.encode(payload, HMAC_SECRET)
+ end
+
+ def self.decode(token)
+ # get payload; first index in decoded Array
+ body = JWT.decode(token, HMAC_SECRET, true, { algorithm: 'HS256' })[0]
+ HashWithIndifferentAccess.new body
+ # rescue from all decode errors
+ rescue JWT::DecodeError => e
+ raise ExceptionHandler::InvalidToken, e.message
+ end
+end
diff --git a/api/app/lib/message.rb b/api/app/lib/message.rb
new file mode 100644
index 000000000..e47526c27
--- /dev/null
+++ b/api/app/lib/message.rb
@@ -0,0 +1,33 @@
+class Message
+ def self.not_found(record = 'record')
+ "Sorry, #{record} not found."
+ end
+
+ def self.invalid_credentials
+ 'Invalid credentials'
+ end
+
+ def self.invalid_token
+ 'Invalid token'
+ end
+
+ def self.missing_token
+ 'Missing token'
+ end
+
+ def self.unauthorized
+ 'Unauthorized request'
+ end
+
+ def self.account_created
+ 'Account created successfully'
+ end
+
+ def self.account_not_created
+ 'Account could not be created'
+ end
+
+ def self.expired_token
+ 'Sorry, your token has expired. Please login to continue.'
+ end
+end
diff --git a/api/app/models/meet.rb b/api/app/models/meet.rb
new file mode 100644
index 000000000..19c3c0cfa
--- /dev/null
+++ b/api/app/models/meet.rb
@@ -0,0 +1,7 @@
+class Meet < ApplicationRecord
+ has_many :meetings, dependent: :destroy
+
+ has_many :user_meets, dependent: :destroy
+ has_many :users, through: :user_meets
+ validates_presence_of :title, :description, :frequency, :duration, :day, :max_members, :created_by
+end
diff --git a/api/app/models/meeting.rb b/api/app/models/meeting.rb
new file mode 100644
index 000000000..33556ef04
--- /dev/null
+++ b/api/app/models/meeting.rb
@@ -0,0 +1,7 @@
+class Meeting < ApplicationRecord
+ belongs_to :meet
+
+ has_many :user_meetings, dependent: :destroy
+ has_many :users, through: :user_meetings
+ validates_presence_of :title, :description, :date, :meet_id, :link
+end
diff --git a/api/app/models/user.rb b/api/app/models/user.rb
new file mode 100644
index 000000000..b9cace0e9
--- /dev/null
+++ b/api/app/models/user.rb
@@ -0,0 +1,10 @@
+class User < ApplicationRecord
+ has_secure_password
+
+ has_many :user_meets, dependent: :destroy
+ has_many :user_meetings, dependent: :destroy
+ has_many :meetings, through: :user_meetings
+ has_many :meets, through: :user_meets
+ has_many :created_meets, foreign_key: :created_by, class_name: 'Meet'
+ validates_presence_of :name, :email, :password_digest, :picture
+end
diff --git a/api/app/models/user_meet.rb b/api/app/models/user_meet.rb
new file mode 100644
index 000000000..b20eb172a
--- /dev/null
+++ b/api/app/models/user_meet.rb
@@ -0,0 +1,14 @@
+class UserMeet < ApplicationRecord
+ belongs_to :user
+ belongs_to :meet
+
+ validate :is_uniq?
+
+ private
+
+ def is_uniq? # rubocop:disable Naming/PredicateName
+ return unless UserMeet.where(user_id: user_id, meet_id: meet_id).count.positive?
+
+ errors.add(:repeated_record, 'The row should not be repeated')
+ end
+end
diff --git a/api/app/models/user_meeting.rb b/api/app/models/user_meeting.rb
new file mode 100644
index 000000000..d05d0bce5
--- /dev/null
+++ b/api/app/models/user_meeting.rb
@@ -0,0 +1,4 @@
+class UserMeeting < ApplicationRecord
+ belongs_to :user
+ belongs_to :meeting
+end
diff --git a/api/bin/bundle b/api/bin/bundle
index a71368e32..589dfd9fc 100644
--- a/api/bin/bundle
+++ b/api/bin/bundle
@@ -24,6 +24,7 @@ m = Module.new do
def cli_arg_version
return unless invoked_as_script? # don't want to hijack other binstubs
return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
+
bundler_version = nil
update_index = nil
ARGV.each_with_index do |a, i|
@@ -31,6 +32,7 @@ m = Module.new do
bundler_version = a
end
next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
+
bundler_version = $1
update_index = i
end
@@ -55,15 +57,17 @@ m = Module.new do
def lockfile_version
return unless File.file?(lockfile)
+
lockfile_contents = File.read(lockfile)
return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
+
Regexp.last_match(1)
end
def bundler_version
@bundler_version ||=
env_var_version || cli_arg_version ||
- lockfile_version
+ lockfile_version
end
def bundler_requirement
@@ -91,10 +95,12 @@ m = Module.new do
gem "bundler", bundler_requirement
end
return if gem_error.nil?
+
require_error = activation_error_handling do
require "bundler/version"
end
return if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION))
+
warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`"
exit 42
end
diff --git a/api/config.ru b/api/config.ru
index f7ba0b527..38a438885 100644
--- a/api/config.ru
+++ b/api/config.ru
@@ -1,4 +1,4 @@
-# This file is used by Rack-based servers to start the application.
+# This file is used by Rack-based servers to start the application. # rubocop:disable Layout/EndOfLine
require_relative 'config/environment'
diff --git a/api/config/cable.yml b/api/config/cable.yml
index 61cfa97aa..ba9a946c7 100644
--- a/api/config/cable.yml
+++ b/api/config/cable.yml
@@ -1,10 +1,11 @@
development:
- adapter: async
+ adapter: redis
+ url: redis://redistogo:0729f84a9a0729b936ca4cb892@hoki.redistogo.com:9247/
test:
adapter: test
production:
adapter: redis
- url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
+ url: redis://redistogo:0729f84a9a0729b936ca4cb892@hoki.redistogo.com:9247/
channel_prefix: api_production
diff --git a/api/config/database.yml b/api/config/database.yml
index 4a8a1b26f..10b16c23a 100644
--- a/api/config/database.yml
+++ b/api/config/database.yml
@@ -21,5 +21,6 @@ test:
database: db/test.sqlite3
production:
- <<: *default
- database: db/production.sqlite3
+ adapter: postgresql
+ pool: 5
+ timeout: 5000
diff --git a/api/config/environments/development.rb b/api/config/environments/development.rb
index 1291bec4d..d27809574 100644
--- a/api/config/environments/development.rb
+++ b/api/config/environments/development.rb
@@ -42,7 +42,6 @@
# Highlight code that triggered database queries in logs.
config.active_record.verbose_query_logs = true
-
# Raises error for missing translations.
# config.action_view.raise_on_missing_translations = true
diff --git a/api/config/environments/production.rb b/api/config/environments/production.rb
index 8cb401a0b..fff805640 100644
--- a/api/config/environments/production.rb
+++ b/api/config/environments/production.rb
@@ -11,7 +11,7 @@
config.eager_load = true
# Full error reports are disabled and caching is turned on.
- config.consider_all_requests_local = false
+ config.consider_all_requests_local = false
# Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"]
# or in config/master.key. This key is used to decrypt credentials (and other encrypted files).
@@ -30,7 +30,7 @@
# Store uploaded files on the local file system (see config/storage.yml for options).
config.active_storage.service = :local
-
+ # config.action_dispatch.tld_length = 2 # Defaults to 1
# Mount Action Cable outside main process or domain.
# config.action_cable.mount_path = nil
# config.action_cable.url = 'wss://example.com/cable'
@@ -44,7 +44,7 @@
config.log_level = :debug
# Prepend all log lines with the following tags.
- config.log_tags = [ :request_id ]
+ config.log_tags = [:request_id]
# Use a different cache store in production.
# config.cache_store = :mem_cache_store
@@ -74,14 +74,15 @@
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
if ENV["RAILS_LOG_TO_STDOUT"].present?
- logger = ActiveSupport::Logger.new(STDOUT)
+ logger = ActiveSupport::Logger.new(STDOUT)
logger.formatter = config.log_formatter
- config.logger = ActiveSupport::TaggedLogging.new(logger)
+ config.logger = ActiveSupport::TaggedLogging.new(logger)
end
# Do not dump schema after migrations.
config.active_record.dump_schema_after_migration = false
+ config.web_socket_server_url = 'wss://aqueous-wildwood-18424.herokuapp.com/cable'
# Inserts middleware to perform automatic connection switching.
# The `database_selector` hash is used to pass options to the DatabaseSelector
# middleware. The `delay` is used to determine how long to wait after a write
diff --git a/api/config/environments/test.rb b/api/config/environments/test.rb
index 470dee4be..a1bc2aa36 100644
--- a/api/config/environments/test.rb
+++ b/api/config/environments/test.rb
@@ -20,7 +20,7 @@
}
# Show full error reports and disable caching.
- config.consider_all_requests_local = true
+ config.consider_all_requests_local = true
config.action_controller.perform_caching = false
config.cache_store = :null_store
diff --git a/api/config/initializers/cors.rb b/api/config/initializers/cors.rb
index 3b1c1b5ed..d7746fb63 100644
--- a/api/config/initializers/cors.rb
+++ b/api/config/initializers/cors.rb
@@ -5,12 +5,14 @@
# Read more: https://github.com/cyu/rack-cors
-# Rails.application.config.middleware.insert_before 0, Rack::Cors do
-# allow do
-# origins 'example.com'
-#
-# resource '*',
-# headers: :any,
-# methods: [:get, :post, :put, :patch, :delete, :options, :head]
-# end
-# end
+Rails.application.config.middleware.insert_before 0, Rack::Cors do
+ allow do
+ origins '*'
+
+ resource(
+ '*',
+ headers: :any,
+ methods: %i[get patch put delete post options head]
+ )
+ end
+end
diff --git a/api/config/master.key b/api/config/master.key
new file mode 100644
index 000000000..9dff5449d
--- /dev/null
+++ b/api/config/master.key
@@ -0,0 +1 @@
+3d8c88f4b4f1f3f64cd475c05b63ef52
\ No newline at end of file
diff --git a/api/config/puma.rb b/api/config/puma.rb
index 5ed443774..0359054fb 100644
--- a/api/config/puma.rb
+++ b/api/config/puma.rb
@@ -4,20 +4,20 @@
# the maximum value specified for Puma. Default is set to 5 threads for minimum
# and maximum; this matches the default thread size of Active Record.
#
-max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
-min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
+max_threads_count = ENV.fetch('RAILS_MAX_THREADS') { 5 }
+min_threads_count = ENV.fetch('RAILS_MIN_THREADS') { max_threads_count }
threads min_threads_count, max_threads_count
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
#
-port ENV.fetch("PORT") { 3000 }
+port ENV.fetch('PORT') { 3000 }
# Specifies the `environment` that Puma will run in.
#
-environment ENV.fetch("RAILS_ENV") { "development" }
+environment ENV.fetch('RAILS_ENV') { 'development' }
# Specifies the `pidfile` that Puma will use.
-pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
+pidfile ENV.fetch('PIDFILE') { 'tmp/pids/server.pid' }
# Specifies the number of `workers` to boot in clustered mode.
# Workers are forked web server processes. If using threads and workers together
diff --git a/api/config/routes.rb b/api/config/routes.rb
index c06383a17..5e283e5b6 100644
--- a/api/config/routes.rb
+++ b/api/config/routes.rb
@@ -1,3 +1,15 @@
Rails.application.routes.draw do
- # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
+ resources :meets do
+ resources :meetings
+ end
+
+ resources :user_meets, except: :show
+
+ get 'search/:term', to: 'meets#search'
+ get 'user_meets/meets/:user_id', to: 'user_meets#show'
+ get 'user_meets/users/:meet_id', to: 'user_meets#show'
+ post 'auth/login', to: 'authentication#authenticate'
+ post 'auth/signup', to: 'users#create'
+ get 'users', to: 'users#index'
+ get 'users/:id', to: 'users#show'
end
diff --git a/api/config/storage.yml b/api/config/storage.yml
index d32f76e8f..ef2d9f650 100644
--- a/api/config/storage.yml
+++ b/api/config/storage.yml
@@ -5,7 +5,6 @@ test:
local:
service: Disk
root: <%= Rails.root.join("storage") %>
-
# Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
# amazon:
# service: S3
diff --git a/api/db/development.sqlite3 b/api/db/development.sqlite3
new file mode 100644
index 000000000..d95dedf8e
Binary files /dev/null and b/api/db/development.sqlite3 differ
diff --git a/api/db/migrate/20200423152906_create_meets.rb b/api/db/migrate/20200423152906_create_meets.rb
new file mode 100644
index 000000000..0873fb45a
--- /dev/null
+++ b/api/db/migrate/20200423152906_create_meets.rb
@@ -0,0 +1,15 @@
+class CreateMeets < ActiveRecord::Migration[6.0]
+ def change
+ create_table :meets do |t|
+ t.string :title
+ t.text :description
+ t.string :frequency
+ t.float :duration
+ t.string :day
+ t.integer :members
+ t.integer :max_members
+
+ t.timestamps
+ end
+ end
+end
diff --git a/api/db/migrate/20200423153710_create_meetings.rb b/api/db/migrate/20200423153710_create_meetings.rb
new file mode 100644
index 000000000..c8d7f511e
--- /dev/null
+++ b/api/db/migrate/20200423153710_create_meetings.rb
@@ -0,0 +1,14 @@
+class CreateMeetings < ActiveRecord::Migration[6.0]
+ def change
+ create_table :meetings do |t|
+ t.string :title
+ t.text :description
+ t.datetime :date
+ t.text :confirmed_members
+ t.references :meet, null: false, foreign_key: true
+ t.string :link
+
+ t.timestamps
+ end
+ end
+end
diff --git a/api/db/migrate/20200423170104_create_users.rb b/api/db/migrate/20200423170104_create_users.rb
new file mode 100644
index 000000000..43e92b7fa
--- /dev/null
+++ b/api/db/migrate/20200423170104_create_users.rb
@@ -0,0 +1,11 @@
+class CreateUsers < ActiveRecord::Migration[6.0]
+ def change
+ create_table :users do |t|
+ t.string :name
+ t.string :email
+ t.string :password_digest
+
+ t.timestamps
+ end
+ end
+end
diff --git a/api/db/migrate/20200423170909_add_created_by_to_meets.rb b/api/db/migrate/20200423170909_add_created_by_to_meets.rb
new file mode 100644
index 000000000..958517e73
--- /dev/null
+++ b/api/db/migrate/20200423170909_add_created_by_to_meets.rb
@@ -0,0 +1,5 @@
+class AddCreatedByToMeets < ActiveRecord::Migration[6.0]
+ def change
+ add_column :meets, :created_by, :string
+ end
+end
diff --git a/api/db/migrate/20200423203320_add_picture_to_users.rb b/api/db/migrate/20200423203320_add_picture_to_users.rb
new file mode 100644
index 000000000..c154baced
--- /dev/null
+++ b/api/db/migrate/20200423203320_add_picture_to_users.rb
@@ -0,0 +1,5 @@
+class AddPictureToUsers < ActiveRecord::Migration[6.0]
+ def change
+ add_column :users, :picture, :string
+ end
+end
diff --git a/api/db/migrate/20200424174528_create_join_table_uses_meets.rb b/api/db/migrate/20200424174528_create_join_table_uses_meets.rb
new file mode 100644
index 000000000..31d0cc064
--- /dev/null
+++ b/api/db/migrate/20200424174528_create_join_table_uses_meets.rb
@@ -0,0 +1,8 @@
+class CreateJoinTableUsesMeets < ActiveRecord::Migration[6.0]
+ def change
+ create_table :user_meets do |t|
+ t.references :user, null: false, foreign_key: true
+ t.references :meet, null: false, foreign_key: true
+ end
+ end
+end
diff --git a/api/db/migrate/20200424174751_create_join_table_uses_meetings.rb b/api/db/migrate/20200424174751_create_join_table_uses_meetings.rb
new file mode 100644
index 000000000..01e7a6006
--- /dev/null
+++ b/api/db/migrate/20200424174751_create_join_table_uses_meetings.rb
@@ -0,0 +1,8 @@
+class CreateJoinTableUsesMeetings < ActiveRecord::Migration[6.0]
+ def change
+ create_table :user_meetings do |t|
+ t.references :user, null: false, foreign_key: true
+ t.references :meeting, null: false, foreign_key: true
+ end
+ end
+end
diff --git a/api/db/migrate/20200428213607_change_duration_from_meets.rb b/api/db/migrate/20200428213607_change_duration_from_meets.rb
new file mode 100644
index 000000000..d60a94413
--- /dev/null
+++ b/api/db/migrate/20200428213607_change_duration_from_meets.rb
@@ -0,0 +1,5 @@
+class ChangeDurationFromMeets < ActiveRecord::Migration[6.0]
+ def change
+ change_column :meets, :duration, :float
+ end
+end
diff --git a/api/db/migrate/20200504200000_create_conversations.rb b/api/db/migrate/20200504200000_create_conversations.rb
new file mode 100644
index 000000000..592e89da2
--- /dev/null
+++ b/api/db/migrate/20200504200000_create_conversations.rb
@@ -0,0 +1,9 @@
+class CreateConversations < ActiveRecord::Migration[6.0]
+ def change
+ create_table :conversations do |t|
+ t.string :title
+
+ t.timestamps
+ end
+ end
+end
diff --git a/api/db/migrate/20200504200114_create_messagems.rb b/api/db/migrate/20200504200114_create_messagems.rb
new file mode 100644
index 000000000..893186263
--- /dev/null
+++ b/api/db/migrate/20200504200114_create_messagems.rb
@@ -0,0 +1,10 @@
+class CreateMessagems < ActiveRecord::Migration[6.0]
+ def change
+ create_table :messagems do |t|
+ t.string :text
+ t.references :conversation, null: false, foreign_key: true
+
+ t.timestamps
+ end
+ end
+end
diff --git a/api/db/migrate/20200505164423_remove_meeting_id_from_users.rb b/api/db/migrate/20200505164423_remove_meeting_id_from_users.rb
new file mode 100644
index 000000000..caf5ea550
--- /dev/null
+++ b/api/db/migrate/20200505164423_remove_meeting_id_from_users.rb
@@ -0,0 +1,5 @@
+class RemoveMeetingIdFromUsers < ActiveRecord::Migration[6.0]
+ def change
+ remove_column :users, :meeting_id, :integer, null: false
+ end
+end
diff --git a/api/db/schema.rb b/api/db/schema.rb
new file mode 100644
index 000000000..b2d08dedd
--- /dev/null
+++ b/api/db/schema.rb
@@ -0,0 +1,84 @@
+# This file is auto-generated from the current state of the database. Instead
+# of editing this file, please use the migrations feature of Active Record to
+# incrementally modify your database, and then regenerate this schema definition.
+#
+# This file is the source Rails uses to define your schema when running `rails
+# db:schema:load`. When creating a new database, `rails db:schema:load` tends to
+# be faster and is potentially less error prone than running all of your
+# migrations from scratch. Old migrations may fail to apply correctly if those
+# migrations use external dependencies or application code.
+#
+# It's strongly recommended that you check this file into your version control system.
+
+# rubocop:disable all
+ActiveRecord::Schema.define(version: 2020_05_05_164423) do
+ create_table "conversations", force: :cascade do |t|
+ t.string "title"
+ t.datetime "created_at", precision: 6, null: false
+ t.datetime "updated_at", precision: 6, null: false
+ end
+
+ create_table "meetings", force: :cascade do |t|
+ t.string "title"
+ t.text "description"
+ t.datetime "date"
+ t.text "confirmed_members"
+ t.integer "meet_id", null: false
+ t.string "link"
+ t.datetime "created_at", precision: 6, null: false
+ t.datetime "updated_at", precision: 6, null: false
+ t.index ["meet_id"], name: "index_meetings_on_meet_id"
+ end
+
+ create_table "meets", force: :cascade do |t|
+ t.string "title"
+ t.text "description"
+ t.string "frequency"
+ t.float "duration"
+ t.string "day"
+ t.integer "members"
+ t.integer "max_members"
+ t.datetime "created_at", precision: 6, null: false
+ t.datetime "updated_at", precision: 6, null: false
+ t.string "created_by"
+ end
+
+ create_table "messagems", force: :cascade do |t|
+ t.string "text"
+ t.integer "conversation_id", null: false
+ t.datetime "created_at", precision: 6, null: false
+ t.datetime "updated_at", precision: 6, null: false
+ t.index ["conversation_id"], name: "index_messagems_on_conversation_id"
+ end
+
+ create_table "user_meetings", force: :cascade do |t|
+ t.integer "user_id", null: false
+ t.integer "meeting_id", null: false
+ t.index ["meeting_id"], name: "index_user_meetings_on_meeting_id"
+ t.index ["user_id"], name: "index_user_meetings_on_user_id"
+ end
+
+ create_table "user_meets", force: :cascade do |t|
+ t.integer "user_id", null: false
+ t.integer "meet_id", null: false
+ t.index ["meet_id"], name: "index_user_meets_on_meet_id"
+ t.index ["user_id"], name: "index_user_meets_on_user_id"
+ end
+
+ create_table "users", force: :cascade do |t|
+ t.string "name"
+ t.string "email"
+ t.string "password_digest"
+ t.datetime "created_at", precision: 6, null: false
+ t.datetime "updated_at", precision: 6, null: false
+ t.string "picture"
+ end
+
+ add_foreign_key "meetings", "meets"
+ add_foreign_key "messagems", "conversations"
+ add_foreign_key "user_meetings", "meetings"
+ add_foreign_key "user_meetings", "users"
+ add_foreign_key "user_meets", "meets"
+ add_foreign_key "user_meets", "users"
+end
+# rubocop:enable all
diff --git a/api/db/seeds.rb b/api/db/seeds.rb
index 1beea2acc..236f54873 100644
--- a/api/db/seeds.rb
+++ b/api/db/seeds.rb
@@ -5,3 +5,21 @@
#
# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
# Character.create(name: 'Luke', movie: movies.first)
+sarah = User.create(name: 'Sarah', email: 'sarah@mail.com', password: '123abc', picture: 'https://joeschmoe.io/api/v1/jane')
+User.create(name: 'Jo', email: 'jo@mail.com', password: '123abc', picture: 'https://joeschmoe.io/api/v1/josephine')
+
+12.times do |i|
+ meet = sarah.meets.create(title: "Support meeting - #{i}",
+ description: 'This is a meeting for the members unnable to leave...',
+ frequency: 'weekly',
+ duration: 1.5,
+ day: 'Wednesday',
+ members: 20,
+ max_members: 24,
+ created_by: sarah.id)
+ meet.meetings.create(title: 'Next meeting',
+ description: '...',
+ date: Date.new + 10.days,
+ confirmed_members: 0,
+ link: 'https://microverse.zoom.us/j/76632873333')
+end
diff --git a/api/db/test.sqlite3 b/api/db/test.sqlite3
new file mode 100644
index 000000000..a05bc7af5
Binary files /dev/null and b/api/db/test.sqlite3 differ
diff --git a/api/log/development.log b/api/log/development.log
new file mode 100644
index 000000000..617b53875
--- /dev/null
+++ b/api/log/development.log
@@ -0,0 +1,81477 @@
+ [1m[35m (22.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (178.5ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
+ [1m[35m (103.3ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to CreateMeets (20200423152906)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (2.7ms)[0m [1m[35mCREATE TABLE "meets" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "frequency" varchar, "duration" float, "day" varchar, "members" integer, "max_members" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[36mprimary::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423152906"]]
+ [1m[35m (183.9ms)[0m [1m[36mcommit transaction[0m
+Migrating to CreateMeetings (20200423153710)
+ [1m[35m (3.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to CreateMeetings (20200423153710)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (1.4ms)[0m [1m[35mCREATE TABLE "meetings" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "date" datetime, "confirmed_members" text, "meet_id" integer NOT NULL, "link" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_f82bd1b26a"
+FOREIGN KEY ("meet_id")
+ REFERENCES "meets" ("id")
+)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_meetings_on_meet_id" ON "meetings" ("meet_id")[0m
+ [1m[36mprimary::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423153710"]]
+ [1m[35m (96.9ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Create (1.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", "2020-04-23 15:41:09.732847"], ["updated_at", "2020-04-23 15:41:09.732847"]]
+ [1m[35m (86.0ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (3.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to CreateUsers (20200423170104)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (4.9ms)[0m [1m[35mCREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "password_digest" varchar, "meeting_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_da68fd68e8"
+FOREIGN KEY ("meeting_id")
+ REFERENCES "meetings" ("id")
+)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id")[0m
+ [1m[36mprimary::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423170104"]]
+ [1m[35m (134.8ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.8ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (3.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[35mDROP TABLE IF EXISTS "meetings"[0m
+ [1m[35m (105.6ms)[0m [1m[35mCREATE TABLE "meetings" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "date" datetime, "confirmed_members" text, "meet_id" integer NOT NULL, "link" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[35m (83.7ms)[0m [1m[35mCREATE INDEX "index_meetings_on_meet_id" ON "meetings" ("meet_id")[0m
+ [1m[35m (0.7ms)[0m [1m[35mDROP TABLE IF EXISTS "meets"[0m
+ [1m[35m (96.7ms)[0m [1m[35mCREATE TABLE "meets" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "frequency" varchar, "duration" float, "day" varchar, "members" integer, "max_members" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[35m (1.1ms)[0m [1m[35mDROP TABLE IF EXISTS "users"[0m
+ [1m[35m (88.3ms)[0m [1m[35mCREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "password_digest" varchar, "meeting_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[35m (102.1ms)[0m [1m[35mCREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id")[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (0.6ms)[0m [1m[35mCREATE TEMPORARY TABLE "ameetings" ("id" integer NOT NULL PRIMARY KEY, "title" varchar DEFAULT NULL, "description" text DEFAULT NULL, "date" datetime DEFAULT NULL, "confirmed_members" text DEFAULT NULL, "meet_id" integer NOT NULL, "link" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[35m (0.3ms)[0m [1m[35mCREATE INDEX "tindex_ameetings_on_meet_id" ON "ameetings" ("meet_id")[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "ameetings" ("id","title","description","date","confirmed_members","meet_id","link","created_at","updated_at")
+ SELECT "id","title","description","date","confirmed_members","meet_id","link","created_at","updated_at" FROM "meetings"[0m
+ [1m[35m (2.3ms)[0m [1m[35mDROP TABLE "meetings"[0m
+ [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "meetings" ("id" integer NOT NULL PRIMARY KEY, "title" varchar DEFAULT NULL, "description" text DEFAULT NULL, "date" datetime DEFAULT NULL, "confirmed_members" text DEFAULT NULL, "meet_id" integer NOT NULL, "link" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_f82bd1b26a"
+FOREIGN KEY ("meet_id")
+ REFERENCES "meets" ("id")
+)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_meetings_on_meet_id" ON "meetings" ("meet_id")[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("id","title","description","date","confirmed_members","meet_id","link","created_at","updated_at")
+ SELECT "id","title","description","date","confirmed_members","meet_id","link","created_at","updated_at" FROM "ameetings"[0m
+ [1m[35m (0.2ms)[0m [1m[35mDROP TABLE "ameetings"[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (154.0ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (0.7ms)[0m [1m[35mCREATE TEMPORARY TABLE "ausers" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "meeting_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[35m (0.4ms)[0m [1m[35mCREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id")[0m
+ [1m[35m (0.2ms)[0m [1m[32mINSERT INTO "ausers" ("id","name","email","password_digest","meeting_id","created_at","updated_at")
+ SELECT "id","name","email","password_digest","meeting_id","created_at","updated_at" FROM "users"[0m
+ [1m[35m (3.0ms)[0m [1m[35mDROP TABLE "users"[0m
+ [1m[35m (0.5ms)[0m [1m[35mCREATE TABLE "users" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "meeting_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_da68fd68e8"
+FOREIGN KEY ("meeting_id")
+ REFERENCES "meetings" ("id")
+)[0m
+ [1m[35m (0.4ms)[0m [1m[35mCREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id")[0m
+ [1m[35m (0.2ms)[0m [1m[32mINSERT INTO "users" ("id","name","email","password_digest","meeting_id","created_at","updated_at")
+ SELECT "id","name","email","password_digest","meeting_id","created_at","updated_at" FROM "ausers"[0m
+ [1m[35m (0.3ms)[0m [1m[35mDROP TABLE "ausers"[0m
+ [1m[35m (0.3ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.3ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (86.8ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (87.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (102.8ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20200423170104)[0m
+ [1m[35m (92.3ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
+(20200423152906),
+(20200423153710);
+
+[0m
+ [1m[35m (89.6ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Create (1.8ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", "2020-04-23 17:01:54.579741"], ["updated_at", "2020-04-23 17:01:54.579741"]]
+ [1m[35m (163.3ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Update (2.9ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ?[0m [["value", "test"], ["updated_at", "2020-04-23 17:01:54.756628"], ["key", "environment"]]
+ [1m[35m (104.1ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "schema_sha1"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Create (1.2ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "schema_sha1"], ["value", "046fd482539f9ae8f1a51fb656e675fe897af175"], ["created_at", "2020-04-23 17:01:54.877702"], ["updated_at", "2020-04-23 17:01:54.877702"]]
+ [1m[35m (105.0ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (3.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to AddCreatedByToMeets (20200423170909)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (5.3ms)[0m [1m[35mALTER TABLE "meets" ADD "created_by" varchar[0m
+ [1m[36mprimary::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423170909"]]
+ [1m[35m (140.1ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (1.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Started GET "/" for 127.0.0.1 at 2020-04-23 16:38:59 -0300
+ [1m[35m (27.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by Rails::WelcomeController#index as HTML
+ Rendering C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/railties-6.0.2.2/lib/rails/templates/rails/welcome/index.html.erb
+ Rendered C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/railties-6.0.2.2/lib/rails/templates/rails/welcome/index.html.erb (Duration: 91.3ms | Allocations: 416)
+Completed 200 OK in 242ms (Views: 188.8ms | ActiveRecord: 0.0ms | Allocations: 2226)
+
+
+Started GET "/favicon.ico" for 127.0.0.1 at 2020-04-23 16:39:01 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 16:39:08 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (1.0ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 127ms (Views: 38.2ms | ActiveRecord: 2.9ms | Allocations: 3039)
+
+
+ [1m[35m (3.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to AddUserToMeets (20200423194413)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mALTER TABLE "meets" ADD "user_id" integer NOT NULL[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "meets"[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 11]]
+ [1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "meets"[0m
+ [1m[35m (4.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to AddUserToMeets (20200423194413)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (5.2ms)[0m [1m[35mALTER TABLE "meets" ADD "user_id" integer[0m
+ [1m[35m (0.3ms)[0m [1m[35mCREATE INDEX "index_meets_on_user_id" ON "meets" ("user_id")[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TEMPORARY TABLE "ameets" ("id" integer NOT NULL PRIMARY KEY, "title" varchar DEFAULT NULL, "description" text DEFAULT NULL, "frequency" varchar DEFAULT NULL, "duration" float DEFAULT NULL, "day" varchar DEFAULT NULL, "members" integer DEFAULT NULL, "max_members" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "created_by" varchar DEFAULT NULL, "user_id" integer DEFAULT NULL)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "tindex_ameets_on_user_id" ON "ameets" ("user_id")[0m
+ [1m[35m (0.2ms)[0m [1m[32mINSERT INTO "ameets" ("id","title","description","frequency","duration","day","members","max_members","created_at","updated_at","created_by","user_id")
+ SELECT "id","title","description","frequency","duration","day","members","max_members","created_at","updated_at","created_by","user_id" FROM "meets"[0m
+ [1m[35m (0.4ms)[0m [1m[35mDROP TABLE "meets"[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "meets" ("id" integer NOT NULL PRIMARY KEY, "title" varchar DEFAULT NULL, "description" text DEFAULT NULL, "frequency" varchar DEFAULT NULL, "duration" float DEFAULT NULL, "day" varchar DEFAULT NULL, "members" integer DEFAULT NULL, "max_members" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "created_by" varchar DEFAULT NULL, "user_id" integer DEFAULT NULL, CONSTRAINT "fk_rails_9714ca694f"
+FOREIGN KEY ("user_id")
+ REFERENCES "users" ("id")
+)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_meets_on_user_id" ON "meets" ("user_id")[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "meets" ("id","title","description","frequency","duration","day","members","max_members","created_at","updated_at","created_by","user_id")
+ SELECT "id","title","description","frequency","duration","day","members","max_members","created_at","updated_at","created_by","user_id" FROM "ameets"[0m
+ [1m[35m (1.2ms)[0m [1m[35mDROP TABLE "ameets"[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[36mprimary::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423194413"]]
+ [1m[35m (108.1ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (3.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (5.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 11]]
+ [1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 11]]
+ [1m[35m (3.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Sarah"], ["email", "sarah@mail.com"], ["password_digest", "$2a$12$9qBKfBIFJB2sc2do56ieG.60oFZD0bAqG0Lw0tsPt5Pr/zu6mXefG"], ["created_at", "2020-04-23 19:59:53.606741"], ["updated_at", "2020-04-23 19:59:53.606741"]]
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to ChangeMeetingIdToNotNullInUsers (20200423200426)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TEMPORARY TABLE "ausers" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "meeting_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id")[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "ausers" ("id","name","email","password_digest","meeting_id","created_at","updated_at")
+ SELECT "id","name","email","password_digest","meeting_id","created_at","updated_at" FROM "users"[0m
+ [1m[35m (5.0ms)[0m [1m[35mDROP TABLE "users"[0m
+ [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "users" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "meeting_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_da68fd68e8"
+FOREIGN KEY ("meeting_id")
+ REFERENCES "meetings" ("id")
+)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id")[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "users" ("id","name","email","password_digest","meeting_id","created_at","updated_at")
+ SELECT "id","name","email","password_digest","meeting_id","created_at","updated_at" FROM "ausers"[0m
+ [1m[35m (0.3ms)[0m [1m[35mDROP TABLE "ausers"[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[36mprimary::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423200426"]]
+ [1m[35m (176.2ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (3.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Create (0.8ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Tati"], ["email", "sarah@mail.com"], ["password_digest", "$2a$12$pi.Ws/aTHesBnz6pOBx1.e4l.PUFktayyi0ar8IU4Q5FJ7rSGBzf6"], ["created_at", "2020-04-23 20:08:14.487723"], ["updated_at", "2020-04-23 20:08:14.487723"]]
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (3.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (145.7ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
+ [1m[35m (89.0ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to CreateMeets (20200423152906)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (1.5ms)[0m [1m[35mCREATE TABLE "meets" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "frequency" varchar, "duration" float, "day" varchar, "members" integer, "max_members" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[36mprimary::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423152906"]]
+ [1m[35m (104.3ms)[0m [1m[36mcommit transaction[0m
+Migrating to CreateMeetings (20200423153710)
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (3.2ms)[0m [1m[35mCREATE TABLE "meetings" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "date" datetime, "confirmed_members" text, "meet_id" integer NOT NULL, "link" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_f82bd1b26a"
+FOREIGN KEY ("meet_id")
+ REFERENCES "meets" ("id")
+)[0m
+ [1m[35m (0.5ms)[0m [1m[35mCREATE INDEX "index_meetings_on_meet_id" ON "meetings" ("meet_id")[0m
+ [1m[36mprimary::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423153710"]]
+ [1m[35m (93.1ms)[0m [1m[36mcommit transaction[0m
+Migrating to CreateUsers (20200423170104)
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (3.4ms)[0m [1m[35mCREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "password_digest" varchar, "meeting_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_da68fd68e8"
+FOREIGN KEY ("meeting_id")
+ REFERENCES "meetings" ("id")
+)[0m
+ [1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id")[0m
+ [1m[36mprimary::SchemaMigration Create (0.7ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423170104"]]
+ [1m[35m (128.4ms)[0m [1m[36mcommit transaction[0m
+Migrating to AddCreatedByToMeets (20200423170909)
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (3.8ms)[0m [1m[35mALTER TABLE "meets" ADD "created_by" varchar[0m
+ [1m[36mprimary::SchemaMigration Create (0.7ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423170909"]]
+ [1m[35m (92.3ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Create (1.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", "2020-04-23 20:14:52.520362"], ["updated_at", "2020-04-23 20:14:52.520362"]]
+ [1m[35m (86.0ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (3.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Create (1.6ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Don"], ["email", "don@mail.com\n"], ["password_digest", "$2a$12$CYwYY0jS6AlKUYpBkKfL8uE4hbwF2pg7QFNDfmkvVsAe5EYVIKtJe"], ["created_at", "2020-04-23 20:16:20.846838"], ["updated_at", "2020-04-23 20:16:20.846838"]]
+ [1m[35m (101.0ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."created_by" = ? LIMIT ?[0m [["created_by", "1"], ["LIMIT", 11]]
+ [1m[35m (13.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to AddPictureToUsers (20200423203320)
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (149.7ms)[0m [1m[35mALTER TABLE "users" ADD "picture" varchar[0m
+ [1m[36mprimary::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423203320"]]
+ [1m[35m (195.4ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Started GET "/meets" for ::1 at 2020-04-23 17:44:58 -0300
+ [1m[35m (3.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by MeetsController#index as HTML
+Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.0ms | Allocations: 1774)
+
+
+
+NameError (uninitialized constant JsonWebToken::MeetsApi
+Did you mean? Meeting):
+
+app/lib/json_web_token.rb:3:in `'
+app/lib/json_web_token.rb:1:in `'
+app/auth/authorize_api_request.rb:32:in `decoded_auth_token'
+app/auth/authorize_api_request.rb:20:in `user'
+app/auth/authorize_api_request.rb:9:in `call'
+app/controllers/application_controller.rb:13:in `authorize_request'
+Started GET "/favicon.ico" for ::1 at 2020-04-23 17:44:59 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/signup" for ::1 at 2020-04-23 17:45:25 -0300
+
+ActionController::RoutingError (No route matches [GET] "/signup"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/meets" for ::1 at 2020-04-23 17:45:47 -0300
+Processing by MeetsController#index as HTML
+Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 1418)
+
+
+
+NameError (uninitialized constant ExceptionHandler::MissingToken):
+
+app/auth/authorize_api_request.rb:40:in `http_auth_header'
+app/auth/authorize_api_request.rb:32:in `decoded_auth_token'
+app/auth/authorize_api_request.rb:20:in `user'
+app/auth/authorize_api_request.rb:9:in `call'
+app/controllers/application_controller.rb:13:in `authorize_request'
+Started GET "/favicon.ico" for ::1 at 2020-04-23 17:45:47 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/meets" for ::1 at 2020-04-23 17:49:47 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 62ms (Views: 49.5ms | ActiveRecord: 0.8ms | Allocations: 3127)
+
+
+ [1m[35m (4.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."created_by" = ? LIMIT ?[0m [["created_by", "1"], ["LIMIT", 11]]
+Started GET "/auth/login" for ::1 at 2020-04-23 17:54:25 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+
+ActionController::RoutingError (No route matches [GET] "/auth/login"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Update (2.1ms)[0m [1m[33mUPDATE "users" SET "email" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["email", "don@mail.com"], ["updated_at", "2020-04-23 20:55:32.373290"], ["id", 1]]
+ [1m[35m (141.2ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+Started OPTIONS "/auth/login" for ::1 at 2020-04-23 17:57:13 -0300
+
+ActionController::RoutingError (No route matches [OPTIONS] "/auth/login"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started OPTIONS "/auth/login/" for ::1 at 2020-04-23 17:57:46 -0300
+
+ActionController::RoutingError (No route matches [OPTIONS] "/auth/login"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started OPTIONS "/auth/login/" for ::1 at 2020-04-23 17:59:08 -0300
+ [1m[35m (3.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+
+ActionController::RoutingError (No route matches [OPTIONS] "/auth/login"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/meets" for ::1 at 2020-04-23 18:02:14 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.7ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 29ms (Views: 10.6ms | ActiveRecord: 1.4ms | Allocations: 3066)
+
+
+Started GET "/meets/" for ::1 at 2020-04-23 18:02:59 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.4ms | Allocations: 796)
+
+
+ [1m[35m (3.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Create (1.6ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Sarah"], ["email", "sarah@mail.com"], ["password_digest", "$2a$12$tIlfet9.l9tVJeAc2vR1aeUv20Lo.BDO90RdiggOj4RwrO5csfhlK"], ["created_at", "2020-04-23 21:06:40.122283"], ["updated_at", "2020-04-23 21:06:40.122283"]]
+ [1m[35m (115.1ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "First meeting"], ["description", "Lorem ipsum sum don, fem teinho,m de lacarael."], ["created_at", "2020-04-23 21:06:40.341946"], ["updated_at", "2020-04-23 21:06:40.341946"], ["created_by", "2"]]
+ [1m[35m (112.3ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (3.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 11]]
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."created_by" = ? LIMIT ?[0m [["created_by", "2"], ["LIMIT", 11]]
+Started GET "/meets/" for ::1 at 2020-04-23 18:07:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 1.0ms | Allocations: 7717)
+
+
+ [1m[35m (3.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" ORDER BY "meets"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeeting Load (0.5ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? LIMIT ?[0m [["meet_id", 1], ["LIMIT", 11]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (1.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "First meeting"], ["meet_id", 1], ["created_at", "2020-04-23 21:10:54.111383"], ["updated_at", "2020-04-23 21:10:54.111383"]]
+ [1m[35m (126.8ms)[0m [1m[36mcommit transaction[0m
+Started GET "/meets/" for ::1 at 2020-04-23 18:10:58 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.2ms | Allocations: 1009)
+
+
+Started GET "/meets/1" for ::1 at 2020-04-23 18:11:51 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+Completed 200 OK in 38ms (Views: 0.8ms | ActiveRecord: 2.3ms | Allocations: 9426)
+
+
+Started GET "/meetingss/1" for ::1 at 2020-04-23 18:12:14 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+
+ActionController::RoutingError (No route matches [GET] "/meetingss/1"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/meetings/1" for ::1 at 2020-04-23 18:12:21 -0300
+
+ActionController::RoutingError (No route matches [GET] "/meetings/1"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/meetings" for ::1 at 2020-04-23 18:12:24 -0300
+
+ActionController::RoutingError (No route matches [GET] "/meetings"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/meets/1" for ::1 at 2020-04-23 18:12:34 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+Completed 200 OK in 19ms (Views: 0.7ms | ActiveRecord: 1.3ms | Allocations: 8926)
+
+
+Started GET "/meets/1/meetings" for ::1 at 2020-04-23 18:12:38 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/meetings_controller.rb:41:in `set_meet'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 73ms (Views: 40.2ms | ActiveRecord: 1.4ms | Allocations: 12895)
+
+
+Started GET "/meets/1/meetings/1" for ::1 at 2020-04-23 18:12:43 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/meetings_controller.rb:41:in `set_meet'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/meetings_controller.rb:45:in `set_meet_meeting'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1565)
+
+
+Started GET "/meets/1/meetings" for ::1 at 2020-04-23 18:12:49 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/meetings_controller.rb:41:in `set_meet'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 4.7ms | ActiveRecord: 0.6ms | Allocations: 1573)
+
+
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Update (4.8ms)[0m [1m[33mUPDATE "users" SET "picture" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["picture", "https://fakeimg.pl/100x100/?text=AD&font=lobster&font_size=36"], ["updated_at", "2020-04-23 21:20:51.784416"], ["id", 1]]
+ [1m[35m (129.3ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Update (4.7ms)[0m [1m[33mUPDATE "users" SET "picture" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["picture", "https://fakeimg.pl/100x100/?text=SA&font=lobster&font_size=36"], ["updated_at", "2020-04-23 21:21:41.824082"], ["id", 2]]
+ [1m[35m (113.8ms)[0m [1m[36mcommit transaction[0m
+Started GET "/meets/routes" for ::1 at 2020-04-23 18:26:13 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"routes"}
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", nil], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+Completed 404 Not Found in 7ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 2205)
+
+
+Started GET "/routes" for ::1 at 2020-04-23 18:26:17 -0300
+
+ActionController::RoutingError (No route matches [GET] "/routes"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/favicon.ico" for ::1 at 2020-04-23 18:26:18 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started POST "/auth/login" for ::1 at 2020-04-23 18:31:46 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+'{email:sarah@mail.com,password:123abc}'
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at ''{email:sarah@mail.com,password:123abc}''):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+'{email:sarah@mail.com,password:123abc}'
+Started POST "/auth/login" for ::1 at 2020-04-23 18:35:01 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+'{email:sarah@mail.com,
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at ''{email:sarah@mail.com,'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+'{email:sarah@mail.com,
+Started POST "/auth/login" for ::1 at 2020-04-23 18:37:11 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+{email:sarah@mail.com,
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at '{email:sarah@mail.com,'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+{email:sarah@mail.com,
+Started GET "/routes" for ::1 at 2020-04-23 18:46:27 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+
+ActionController::RoutingError (No route matches [GET] "/routes"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/favicon.ico" for ::1 at 2020-04-23 18:46:27 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started POST "/auth/login" for ::1 at 2020-04-23 18:51:03 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+'{email:sarah@mail.com,
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at ''{email:sarah@mail.com,'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+'{email:sarah@mail.com,
+Started POST "/auth/login/" for ::1 at 2020-04-23 18:51:12 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+'{email:sarah@mail.com,
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at ''{email:sarah@mail.com,'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+'{email:sarah@mail.com,
+Started POST "/auth/login/" for ::1 at 2020-04-23 18:51:41 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+'{email:sarah@mail.com,password:123abc}'
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at ''{email:sarah@mail.com,password:123abc}''):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+'{email:sarah@mail.com,password:123abc}'
+Started POST "/auth/login/" for ::1 at 2020-04-23 18:52:00 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+'{email:
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at ''{email:'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+'{email:
+Started POST "/auth/login/" for ::1 at 2020-04-23 18:52:17 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"authentication"=>{}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ?[0m [["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 500 Internal Server Error in 19ms (ActiveRecord: 1.0ms | Allocations: 4200)
+
+
+
+NameError (uninitialized constant ExceptionHandler::AuthenticationError
+Did you mean? AuthenticateUser):
+
+app/auth/authenticate_user.rb:21:in `user'
+app/auth/authenticate_user.rb:9:in `call'
+app/controllers/authentication_controller.rb:6:in `authenticate'
+Started POST "/auth/login/" for ::1 at 2020-04-23 18:55:33 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"authentication"=>{}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ?[0m [["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 15ms (Views: 0.3ms | ActiveRecord: 0.8ms | Allocations: 3061)
+
+
+Started POST "/auth/login/" for ::1 at 2020-04-23 18:58:08 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"authentication"=>{}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ?[0m [["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 19ms (Views: 0.2ms | ActiveRecord: 0.9ms | Allocations: 3017)
+
+
+Started POST "/auth/login/" for ::1 at 2020-04-23 19:01:01 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"authentication"=>{}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ?[0m [["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 17ms (Views: 0.2ms | ActiveRecord: 0.8ms | Allocations: 3033)
+
+
+Started POST "/auth/login/" for ::1 at 2020-04-23 19:02:01 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"authentication"=>{}}
+Completed 400 Bad Request in 2ms (ActiveRecord: 0.0ms | Allocations: 266)
+
+
+
+ActionController::ParameterMissing (param is missing or the value is empty: authentication):
+
+app/controllers/authentication_controller.rb:13:in `auth_params'
+app/controllers/authentication_controller.rb:6:in `authenticate'
+Started POST "/auth/login/" for ::1 at 2020-04-23 19:02:56 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"authentication"=>{}}
+Completed 400 Bad Request in 0ms (ActiveRecord: 0.0ms | Allocations: 130)
+
+
+
+ActionController::ParameterMissing (param is missing or the value is empty: authentication):
+
+app/controllers/authentication_controller.rb:13:in `auth_params'
+app/controllers/authentication_controller.rb:6:in `authenticate'
+Started POST "/auth/login/" for ::1 at 2020-04-23 19:03:38 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"authentication"=>{}}
+Completed 400 Bad Request in 0ms (ActiveRecord: 0.0ms | Allocations: 130)
+
+
+
+ActionController::ParameterMissing (param is missing or the value is empty: authentication):
+
+app/controllers/authentication_controller.rb:13:in `auth_params'
+app/controllers/authentication_controller.rb:6:in `authenticate'
+Started POST "/auth/login/" for ::1 at 2020-04-23 19:04:07 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+'{authentication:{email:don@mail.com,
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at ''{authentication:{email:don@mail.com,'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+'{authentication:{email:don@mail.com,
+Started POST "/auth/login/" for ::1 at 2020-04-23 19:39:09 -0300
+ [1m[35m (4.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 500 Internal Server Error in 410ms (ActiveRecord: 1.8ms | Allocations: 10743)
+
+
+
+NameError (uninitialized constant JsonWebToken::MeetsApi
+Did you mean? Meeting):
+
+app/lib/json_web_token.rb:3:in `'
+app/lib/json_web_token.rb:1:in `'
+app/auth/authenticate_user.rb:9:in `call'
+app/controllers/authentication_controller.rb:6:in `authenticate'
+Started POST "/auth/login/" for ::1 at 2020-04-23 19:41:54 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 530ms (Views: 0.2ms | ActiveRecord: 2.3ms | Allocations: 8117)
+
+
+ [1m[35m (20.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to CreateJoinTableUsesMeets (20200424173846)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mprimary::SchemaMigration Create (1.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200424173846"]]
+ [1m[35m (108.4ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (3.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to CreateJoinTableUsesMeets (20200424174528)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (52.8ms)[0m [1m[35mCREATE TABLE "user_meets" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "meet_id" integer NOT NULL, CONSTRAINT "fk_rails_ca2fe53ab5"
+FOREIGN KEY ("user_id")
+ REFERENCES "users" ("id")
+, CONSTRAINT "fk_rails_0be9f44818"
+FOREIGN KEY ("meet_id")
+ REFERENCES "meets" ("id")
+)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_user_meets_on_user_id" ON "user_meets" ("user_id")[0m
+ [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "index_user_meets_on_meet_id" ON "user_meets" ("meet_id")[0m
+ [1m[36mprimary::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200424174528"]]
+ [1m[35m (101.1ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to CreateJoinTableUsesMeetings (20200424174751)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (1.9ms)[0m [1m[35mCREATE TABLE "user_meetings" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "meeting_id" integer NOT NULL, CONSTRAINT "fk_rails_50ba97f5a7"
+FOREIGN KEY ("user_id")
+ REFERENCES "users" ("id")
+, CONSTRAINT "fk_rails_34b593a2f0"
+FOREIGN KEY ("meeting_id")
+ REFERENCES "meetings" ("id")
+)[0m
+ [1m[35m (0.4ms)[0m [1m[35mCREATE INDEX "index_user_meetings_on_user_id" ON "user_meetings" ("user_id")[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_user_meetings_on_meeting_id" ON "user_meetings" ("meeting_id")[0m
+ [1m[36mprimary::SchemaMigration Create (1.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200424174751"]]
+ [1m[35m (125.7ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to RemoveMeetingFromUsers (20200424175028)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TEMPORARY TABLE "ausers" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "meeting_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "picture" varchar DEFAULT NULL)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id")[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "ausers" ("id","name","email","password_digest","meeting_id","created_at","updated_at","picture")
+ SELECT "id","name","email","password_digest","meeting_id","created_at","updated_at","picture" FROM "users"[0m
+ [1m[35m (1.4ms)[0m [1m[35mDROP TABLE "users"[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "users" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "meeting_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "picture" varchar DEFAULT NULL, CONSTRAINT "fk_rails_da68fd68e8"
+FOREIGN KEY ("meeting_id")
+ REFERENCES "meetings" ("id")
+)[0m
+ [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id")[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "users" ("id","name","email","password_digest","meeting_id","created_at","updated_at","picture")
+ SELECT "id","name","email","password_digest","meeting_id","created_at","updated_at","picture" FROM "ausers"[0m
+ [1m[35m (0.1ms)[0m [1m[35mDROP TABLE "ausers"[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[36mprimary::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200424175028"]]
+ [1m[35m (113.8ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 11]]
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Destroy (2.5ms)[0m [1m[31mDELETE FROM "users" WHERE "users"."id" = ?[0m [["id", 1]]
+ [1m[35m (112.1ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Destroy (1.5ms)[0m [1m[31mDELETE FROM "users" WHERE "users"."id" = ?[0m [["id", 2]]
+ [1m[35m (174.8ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 11]]
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mMeeting Destroy (1.2ms)[0m [1m[31mDELETE FROM "meetings" WHERE "meetings"."id" = ?[0m [["id", 1]]
+ [1m[36mMeet Destroy (0.2ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 1]]
+ [1m[35m (83.7ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mMeeting Load (0.4ms)[0m [1m[34mSELECT "meetings".* FROM "meetings"[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Create (1.5ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "sarah"], ["email", "sarah@mail.com"], ["password_digest", "$2a$12$P4k6hMRqCpNhr.nX5gzq3OtEVA9THN9IXScglqy1jFjB/gGzPQC0C"], ["created_at", "2020-04-24 18:34:11.816642"], ["updated_at", "2020-04-24 18:34:11.816642"]]
+ [1m[35m (100.1ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeeting Load (0.5ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" INNER JOIN "user_meetings" ON "meetings"."id" = "user_meetings"."meeting_id" WHERE "user_meetings"."user_id" = ? LIMIT ?[0m [["user_id", 1], ["LIMIT", 11]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" INNER JOIN "user_meetings" ON "meetings"."id" = "user_meetings"."meeting_id" WHERE "user_meetings"."user_id" = ? LIMIT ?[0m [["user_id", 1], ["LIMIT", 11]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" INNER JOIN "user_meets" ON "meets"."id" = "user_meets"."meet_id" WHERE "user_meets"."user_id" = ? LIMIT ?[0m [["user_id", 1], ["LIMIT", 11]]
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" INNER JOIN "user_meetings" ON "meetings"."id" = "user_meetings"."meeting_id" WHERE "user_meetings"."user_id" = ? LIMIT ?[0m [["user_id", 1], ["LIMIT", 11]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."created_by" = ? LIMIT ?[0m [["created_by", "1"], ["LIMIT", 11]]
+Started GET "/" for 127.0.0.1 at 2020-04-24 16:27:01 -0300
+ [1m[35m (20.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by Rails::WelcomeController#index as HTML
+ Rendering C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/railties-6.0.2.2/lib/rails/templates/rails/welcome/index.html.erb
+ Rendered C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/railties-6.0.2.2/lib/rails/templates/rails/welcome/index.html.erb (Duration: 115.1ms | Allocations: 416)
+Completed 200 OK in 346ms (Views: 174.9ms | ActiveRecord: 0.0ms | Allocations: 2225)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-24 16:27:12 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 129ms (Views: 93.3ms | ActiveRecord: 1.5ms | Allocations: 10233)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 16:27:54 -0300
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (10.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 568ms (Views: 0.2ms | ActiveRecord: 10.7ms | Allocations: 2260)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 16:38:05 -0300
+ [1m[35m (0.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 16:38:06 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 16:41:24 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 16:41:25 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 16:42:53 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started GET "/users" for 127.0.0.1 at 2020-04-24 16:48:18 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.3ms | Allocations: 989)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-24 16:48:31 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.2ms | Allocations: 975)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 16:48:53 -0300
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 490ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1377)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 16:51:31 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 16:51:32 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for ::1 at 2020-04-24 17:03:44 -0300
+ [1m[35m (13.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 17:05:08 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 17:05:08 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started GET "/usersbuk" for ::1 at 2020-04-24 17:13:43 -0300
+ [1m[35m (22.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+
+ActionController::RoutingError (No route matches [GET] "/usersbuk"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/favicon.ico" for ::1 at 2020-04-24 17:13:45 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/users" for ::1 at 2020-04-24 17:16:09 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (22.4ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 169ms (Views: 67.5ms | ActiveRecord: 24.7ms | Allocations: 10238)
+
+
+Started GET "/list" for ::1 at 2020-04-24 17:54:14 -0300
+Started GET "/static/js/1.chunk.js.map" for ::1 at 2020-04-24 17:54:14 -0300
+ [1m[35m (30.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (35.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+
+ActionController::RoutingError (No route matches [GET] "/static/js/1.chunk.js.map"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+
+ActionController::RoutingError (No route matches [GET] "/list"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/favicon.ico" for ::1 at 2020-04-24 17:54:16 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/users" for 127.0.0.1 at 2020-04-24 18:05:20 -0300
+ [1m[35m (5.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (250.3ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 932ms (Views: 312.8ms | ActiveRecord: 253.0ms | Allocations: 10227)
+
+
+Started POST "/signup" for 127.0.0.1 at 2020-04-24 18:05:38 -0300
+Processing by UsersController#create as HTML
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "picture"=>"''", "name"=>"'Ury'", "user"=>{"name"=>"'Ury'", "email"=>"sarah01@mail.com", "picture"=>"''"}}
+[31mUnpermitted parameter: :user[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/users_controller.rb:4:in `create'
+ [1m[36mUser Create (16.6ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "'Ury'"], ["email", "sarah01@mail.com"], ["password_digest", "$2a$12$ziBxOgDDcZlkWiUV.jFH1.Qo6qB5YrOlcjdCjwzFhPSuQJbrbMhpG"], ["created_at", "2020-04-24 21:05:38.465155"], ["updated_at", "2020-04-24 21:05:38.465155"], ["picture", "''"]]
+ ↳ app/controllers/users_controller.rb:4:in `create'
+ [1m[35m (162.0ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/users_controller.rb:4:in `create'
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 201 Created in 1199ms (Views: 0.2ms | ActiveRecord: 179.7ms | Allocations: 5062)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-24 18:06:02 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.2ms | Allocations: 1177)
+
+
+Started POST "/auth/login" for ::1 at 2020-04-24 18:35:39 -0300
+ [1m[35m (29.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 683ms (Views: 0.4ms | ActiveRecord: 1.8ms | Allocations: 11429)
+
+
+Started POST "/auth/login" for ::1 at 2020-04-24 18:36:49 -0300
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 485ms (Views: 0.3ms | ActiveRecord: 0.6ms | Allocations: 1358)
+
+
+Started POST "/auth/login" for ::1 at 2020-04-24 18:44:06 -0300
+ [1m[35m (3.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}}
+Completed 500 Internal Server Error in 184ms (ActiveRecord: 0.0ms | Allocations: 73994)
+
+
+
+NameError (undefined local variable or method `email' for #):
+
+app/controllers/authentication_controller.rb:5:in `authenticate'
+Started POST "/auth/login" for ::1 at 2020-04-24 18:44:27 -0300
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}}
+Completed 500 Internal Server Error in 198ms (ActiveRecord: 0.0ms | Allocations: 70272)
+
+
+
+NameError (undefined local variable or method `email' for #):
+
+app/controllers/authentication_controller.rb:5:in `authenticate'
+Started POST "/auth/login" for ::1 at 2020-04-24 18:45:46 -0300
+ [1m[35m (5.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:5:in `authenticate'
+Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 2.5ms | Allocations: 10760)
+
+
+Started POST "/auth/login" for ::1 at 2020-04-24 18:46:15 -0300
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:5:in `authenticate'
+Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.9ms | Allocations: 797)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 18:48:30 -0300
+ [1m[35m (6.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:5:in `authenticate'
+Completed 200 OK in 61ms (Views: 0.2ms | ActiveRecord: 1.9ms | Allocations: 10760)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 18:48:47 -0300
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:5:in `authenticate'
+Completed 200 OK in 17ms (Views: 0.1ms | ActiveRecord: 1.0ms | Allocations: 798)
+
+
+Started POST "/users" for 127.0.0.1 at 2020-04-24 18:48:55 -0300
+
+ActionController::RoutingError (No route matches [POST] "/users"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started POST "/users" for 127.0.0.1 at 2020-04-24 18:49:05 -0300
+
+ActionController::RoutingError (No route matches [POST] "/users"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/users" for 127.0.0.1 at 2020-04-24 18:49:13 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 59ms (Views: 57.6ms | ActiveRecord: 0.4ms | Allocations: 1255)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-24 18:49:16 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.2ms | Allocations: 1160)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-24 18:49:30 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (12.5ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 21ms (Views: 4.2ms | ActiveRecord: 13.1ms | Allocations: 3273)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-24 18:49:33 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.2ms | Allocations: 792)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-24 18:49:53 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.2ms | Allocations: 1175)
+
+
+Started POST "/meets" for 127.0.0.1 at 2020-04-24 18:50:40 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#create as HTML
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "meet"=>{}}
+Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.8ms | Allocations: 536)
+
+
+
+NoMethodError (undefined method `meets' for nil:NilClass):
+
+app/controllers/meets_controller.rb:14:in `create'
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 18:50:57 -0300
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:5:in `authenticate'
+Completed 200 OK in 26ms (Views: 0.2ms | ActiveRecord: 2.1ms | Allocations: 8638)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 18:52:04 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:5:in `authenticate'
+Completed 200 OK in 27ms (Views: 0.2ms | ActiveRecord: 1.7ms | Allocations: 9206)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 18:52:19 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as HTML
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 512ms (Views: 0.2ms | ActiveRecord: 1.5ms | Allocations: 9832)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 18:53:47 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 18:55:29 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 18:58:03 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 18:58:53 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 18:59:29 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 18:59:40 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:01:15 -0300
+ [1m[35m (4.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:04:57 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+ [1m[36mUser Load (25.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 835ms (Views: 0.2ms | ActiveRecord: 27.5ms | Allocations: 11300)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:06:35 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 538ms (Views: 0.2ms | ActiveRecord: 4.0ms | Allocations: 9880)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:07:42 -0300
+ [1m[35m (4.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 525ms (Views: 0.2ms | ActiveRecord: 1.6ms | Allocations: 11431)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:09:30 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 520ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1361)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:10:13 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 552ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1362)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:15:47 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 481ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1377)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:16:36 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 479ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1361)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:26:14 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah02@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah02@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah02@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 14ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 956)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:28:38 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah02@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah02@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah02@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:29:51 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah02@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah02@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah02@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:29:54 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah02@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah02@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah02@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:29:55 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah02@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah02@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah02@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:30:04 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 480ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:30:05 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 476ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:30:55 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 476ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:30:56 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 527ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1345)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:30:57 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 476ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:30:58 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 477ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:32:01 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 472ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1349)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:32:27 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:32:56 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:33:18 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:33:19 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:33:19 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 19ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:33:28 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:33:28 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:33:28 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:33:29 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:34:53 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:34:54 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:34:54 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 17ms (Views: 13.3ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:34:54 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah0@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah0@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah0@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:37:08 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 521ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:37:12 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 485ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:37:13 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 489ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1345)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:37:46 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 479ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1347)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:38:59 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:39:07 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 11ms (Views: 0.3ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:39:08 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:39:24 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:39:25 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 67ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:39:30 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 7ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:07 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 6ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:08 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:11 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:11 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:12 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:12 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:12 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 15ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:12 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:12 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 8ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:13 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 7ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:14 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:14 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:14 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:15 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:15 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:50 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:40:52 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 9ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:41:34 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:41:37 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:42:01 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 6ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:42:03 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 11ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:43:23 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 11ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:43:27 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:43:37 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 8ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 759)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:43:44 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:44:01 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 6ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:44:19 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:44:49 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:45:14 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 10ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:45:27 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 7ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:45:29 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 7ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:45:32 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:45:47 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:46:16 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:46:35 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:46:53 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 11ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:47:21 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:47:44 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:47:57 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:47:58 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 6ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:47:59 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:48:00 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 10ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:48:22 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:48:27 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 10ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:49:27 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:49:35 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 481ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:49:40 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 482ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1346)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:50:22 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 483ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:50:24 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 486ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1348)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:50:45 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 483ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1345)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:51:22 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 494ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:51:43 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 483ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:52:26 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 482ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:53:18 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 483ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:54:03 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 480ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:54:47 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 488ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:56:09 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 480ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:56:53 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 6ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:57:00 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:57:01 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:57:07 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 478ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1346)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:57:41 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 482ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:58:09 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 478ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1347)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:58:46 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:58:59 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:59:34 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 10ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:59:35 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 12ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:59:36 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:59:36 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 16ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:59:37 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:59:37 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah001@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah001@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah001@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 7ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 758)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-24 19:59:46 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 477ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 12:10:26 -0300
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 12:10:26 -0300
+ [1m[35m (13.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (36.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 990ms (Views: 0.2ms | ActiveRecord: 1.2ms | Allocations: 12619)
+
+
+Completed 200 OK in 1233ms (Views: 0.2ms | ActiveRecord: 1.3ms | Allocations: 12723)
+
+
+Started GET "/" for 127.0.0.1 at 2020-04-28 12:13:11 -0300
+Processing by Rails::WelcomeController#index as HTML
+ Rendering C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/railties-6.0.2.2/lib/rails/templates/rails/welcome/index.html.erb
+ Rendered C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/railties-6.0.2.2/lib/rails/templates/rails/welcome/index.html.erb (Duration: 171.4ms | Allocations: 416)
+Completed 200 OK in 275ms (Views: 235.7ms | ActiveRecord: 0.0ms | Allocations: 2222)
+
+
+Started GET "/favicon.ico" for 127.0.0.1 at 2020-04-28 12:13:13 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/da" for 127.0.0.1 at 2020-04-28 12:13:14 -0300
+
+ActionController::RoutingError (No route matches [GET] "/da"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:13:21 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (17.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 37ms (Views: 8.0ms | ActiveRecord: 18.3ms | Allocations: 3272)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:16:41 -0300
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 81ms (Views: 3.4ms | ActiveRecord: 3.3ms | Allocations: 12430)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:17:00 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 124)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:17:03 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:17:51 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 3.5ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:17:54 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 118)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:18:34 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 4.3ms | ActiveRecord: 0.8ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:18:43 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.0ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:18:50 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 12ms (Views: 3.9ms | ActiveRecord: 0.7ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:19:15 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 16ms (Views: 8.4ms | ActiveRecord: 0.8ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:19:23 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 118)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:19:37 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 118)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:21:01 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 118)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:21:43 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 118)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:21:57 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 118)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:22:57 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.0ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:23:08 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 4.1ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:30:00 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.7ms | ActiveRecord: 0.8ms | Allocations: 1454)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:30:25 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 2.2ms | ActiveRecord: 1.3ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:30:43 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.8ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 6.8ms | ActiveRecord: 1.2ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:30:54 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 30ms (Views: 12.8ms | ActiveRecord: 0.7ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:31:03 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.6ms | ActiveRecord: 1.0ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:31:12 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 12ms (Views: 4.7ms | ActiveRecord: 0.8ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:33:56 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.9ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 4.3ms | ActiveRecord: 1.2ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:34:41 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.2ms | ActiveRecord: 0.7ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:34:57 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.1ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:35:23 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 4.9ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:35:53 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 3.9ms | ActiveRecord: 0.8ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:35:57 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 2.2ms | ActiveRecord: 0.7ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:37:13 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 4.1ms | ActiveRecord: 0.8ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:38:19 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.7ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:38:45 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 118)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:39:14 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.9ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:39:16 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 2.9ms | ActiveRecord: 0.9ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:39:30 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.2ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:39:30 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 87ms (Views: 3.3ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:39:45 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 2.3ms | ActiveRecord: 0.8ms | Allocations: 1404)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:40:13 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 4.8ms | ActiveRecord: 0.7ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:40:32 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 2.8ms | ActiveRecord: 0.7ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:40:46 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.4ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:41:28 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 3.6ms | ActiveRecord: 0.7ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 12:41:35 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 12:43:12 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (11.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 565ms (Views: 0.2ms | ActiveRecord: 11.4ms | Allocations: 1602)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 13:08:37 -0300
+ [1m[35m (0.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (12.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 86ms (Views: 8.2ms | ActiveRecord: 12.7ms | Allocations: 9520)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 13:09:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 13:09:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 122)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 13:55:43 -0300
+ [1m[35m (0.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 3ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 122)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 13:56:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 122)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 13:57:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (27.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 250ms (Views: 3.9ms | ActiveRecord: 27.8ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 13:58:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:03:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:03:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:04:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:05:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:06:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:07:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:07:39 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (8.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 531ms (Views: 0.2ms | ActiveRecord: 8.4ms | Allocations: 1602)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:09:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:09:35 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 482ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1348)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:10:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:10:29 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 481ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1348)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:10:40 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 480ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1344)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:11:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:11:20 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 485ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:11:22 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 499ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:11:22 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 481ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1364)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:11:23 -0300
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:11:23 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 484ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 1371)
+
+
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 481ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1380)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:12:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:12:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:12:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:12:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:12:43 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 480ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:13:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:13:32 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 481ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:14:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:14:13 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 482ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1344)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:14:19 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 480ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1348)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:14:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:14:34 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 478ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:14:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:15:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:15:31 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 479ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1348)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:16:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:16:24 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 481ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:18:54 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 4.3ms | ActiveRecord: 0.8ms | Allocations: 3735)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:19:30 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 2.9ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:19:39 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 10.5ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:20:07 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:20:48 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:21:22 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:21:49 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.3ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:24:19 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:24:25 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 2.8ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:24:36 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.4ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:32:58 -0300
+ [1m[35m (0.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 6.2ms | ActiveRecord: 0.6ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:33:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:33:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 32ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:33:15 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 119)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:33:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:33:22 -0300
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:33:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 119)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:34:14 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:34:14 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 119)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:34:19 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 484ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1365)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:34:22 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.6ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.6ms | ActiveRecord: 0.8ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:34:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:34:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:34:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:34:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:34:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1388)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:35:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:35:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:35:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:35:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:35:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:35:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:36:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:36:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:36:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:36:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:36:58 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 481ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1345)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:37:01 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 38ms (Views: 34.7ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:37:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:37:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:37:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:37:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:39:13 -0300
+Processing by MeetsController#index as HTML
+Completed 422 Unprocessable Entity in 38ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 268)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:39:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 123)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:39:43 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (45.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 623ms (Views: 0.3ms | ActiveRecord: 45.9ms | Allocations: 1350)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:39:47 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 49ms (Views: 43.5ms | ActiveRecord: 0.9ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:39:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 209ms (Views: 204.1ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:39:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:40:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:40:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:40:30 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:40:30 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.3ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 85ms (Views: 2.9ms | ActiveRecord: 0.8ms | Allocations: 1387)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 14:40:32 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 484ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1351)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:40:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 31ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 14:40:34 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 22ms (Views: 2.4ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:40:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:40:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1388)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:33 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1396)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.8ms | Allocations: 1402)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:33 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1509)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 1.7ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 1.8ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 36ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1446)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 2.1ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 2.1ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 1.9ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 1.3ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.3ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 1.1ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.3ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 2.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 2.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 2.9ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 2.7ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 1.3ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.8ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 1.7ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.4ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 1.3ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (46.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 58ms (Views: 0.7ms | ActiveRecord: 46.7ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 11.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.4ms | ActiveRecord: 1.2ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.5ms | ActiveRecord: 1.0ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.1ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.9ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 32ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.2ms | ActiveRecord: 0.9ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 1.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 3.8ms | ActiveRecord: 0.7ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 2638)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (9.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.7ms | ActiveRecord: 9.6ms | Allocations: 1686)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.8ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 1.2ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 1.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 2.5ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 2.1ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 30ms (Views: 1.4ms | ActiveRecord: 0.6ms | Allocations: 1596)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 2.2ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 1.2ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 2.0ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 31ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 1.2ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.9ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 111ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 0.9ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1448)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 2.3ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.8ms | ActiveRecord: 1.2ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 1.3ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.9ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 1.1ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 2.5ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 9.4ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 37ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 2.0ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.2ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 2.3ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 1.1ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 2.3ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 1.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 26ms (Views: 0.7ms | ActiveRecord: 2.7ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.8ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 1.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 2.3ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 25ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 1.3ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 2.8ms | ActiveRecord: 0.8ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 1.1ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 2.1ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 2.0ms | ActiveRecord: 0.7ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 0.8ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.9ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 1.3ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 1.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.8ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 1.8ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 35ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 2221)
+
+
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 2423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 25ms (Views: 10.3ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 2.3ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 2.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1445)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:51 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:51 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 29ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 2.2ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.9ms | ActiveRecord: 0.6ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 3071)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1612)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1594)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:42:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1836)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1395)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1808)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 1.6ms | ActiveRecord: 0.8ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 9.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 1.3ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.3ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.2ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 25ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1743)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.4ms | ActiveRecord: 1.3ms | Allocations: 1445)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.9ms | ActiveRecord: 2.1ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 2.2ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.8ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.8ms | ActiveRecord: 1.1ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 35ms (Views: 1.0ms | ActiveRecord: 1.1ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 25ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.8ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 1.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.5ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 1.2ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.9ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.4ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 2.7ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 2.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.8ms | ActiveRecord: 1.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.5ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (3.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 3.3ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.2ms | ActiveRecord: 0.8ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 2.9ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1619)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1658)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1989)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1618)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 1.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1454)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.2ms | ActiveRecord: 0.7ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 2.0ms | ActiveRecord: 0.7ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.1ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.9ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1494)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 2.8ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 8.0ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 1.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 2.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 1.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1450)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 26ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.6ms | ActiveRecord: 1.6ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 2.3ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 2.8ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 7.8ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 1.2ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 2.2ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 1.2ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 2.0ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 1.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1402)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 1.7ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.7ms | ActiveRecord: 0.5ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1445)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 1.3ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.1ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.8ms | ActiveRecord: 3.1ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.9ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 28ms (Views: 11.5ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.7ms | ActiveRecord: 0.7ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.4ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 8.6ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 1.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1400)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 1.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 59ms (Views: 2.1ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 1.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.6ms | ActiveRecord: 2.1ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1806)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.3ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 2.0ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 1.8ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 2.1ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 1.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 1.4ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1399)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 1.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 1.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.9ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 1.3ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1397)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.1ms | ActiveRecord: 1.0ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 58ms (Views: 47.2ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:43:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 37ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1450)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 31ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 26ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 3.4ms | ActiveRecord: 0.7ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 3.0ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 2.0ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 8.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 43ms (Views: 1.4ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.3ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 2.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1458)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.5ms | ActiveRecord: 0.6ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.7ms | ActiveRecord: 1.3ms | Allocations: 1444)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 2.7ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 2.4ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.1ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.7ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 2.2ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1446)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 2.0ms | ActiveRecord: 0.7ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 1.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.0ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 3.2ms | ActiveRecord: 2.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.6ms | ActiveRecord: 2.0ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.2ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 1.3ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 1.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.9ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 2.0ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 1.7ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.1ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 2.9ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 2.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.4ms | ActiveRecord: 0.6ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 1.2ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.5ms | ActiveRecord: 0.7ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 1.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.9ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 10.5ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 2.3ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.9ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1447)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 1.1ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 2.3ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.5ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.2ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1444)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 3.5ms | ActiveRecord: 0.8ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 2.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 1.9ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 1.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 1.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 1.9ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 1.3ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 2.0ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1453)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.9ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 1.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 1.9ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.0ms | ActiveRecord: 0.8ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 1.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.8ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 2.2ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 1.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.0ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 1.2ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 1.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 1.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 1.1ms | ActiveRecord: 1.0ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 2.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 1.1ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1448)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1446)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 1.3ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.8ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1445)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 2.9ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 2.0ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1653)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 1.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (3.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 3.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.9ms | ActiveRecord: 1.8ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 2.4ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 2.1ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.5ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 1.7ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 1.8ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.2ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.9ms | ActiveRecord: 2.8ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.8ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.1ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1391)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1395)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 25ms (Views: 1.4ms | ActiveRecord: 1.3ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.6ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 2.7ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.0ms | ActiveRecord: 0.9ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.4ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 382ms (Views: 0.9ms | ActiveRecord: 1.2ms | Allocations: 1445)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (12.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.7ms | ActiveRecord: 12.2ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 2.7ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 2.5ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.3ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1413)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1394)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1395)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.0ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (3.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 3.3ms | Allocations: 1447)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 33ms (Views: 13.3ms | ActiveRecord: 0.8ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 1.6ms | ActiveRecord: 0.9ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 2.0ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 26ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 1.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 142ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1391)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:56 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1395)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 1.7ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:44:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 1.0ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 1.2ms | ActiveRecord: 0.7ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.7ms | ActiveRecord: 1.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.2ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.3ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.1ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 3.5ms | ActiveRecord: 3.3ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.8ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 75ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.5ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 9.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 9.9ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 40ms (Views: 1.6ms | ActiveRecord: 0.9ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 1.3ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 1.6ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 44ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 1.0ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.7ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 1.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 1.6ms | Allocations: 1444)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 2.2ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 1.1ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.3ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 36ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (3.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 3.8ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1402)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.1ms | ActiveRecord: 1.3ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 41ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.0ms | ActiveRecord: 0.9ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.7ms | ActiveRecord: 0.6ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 1.2ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.7ms | ActiveRecord: 0.5ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 9.5ms | ActiveRecord: 0.4ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 1.2ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 3.1ms | ActiveRecord: 0.7ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 28ms (Views: 1.6ms | ActiveRecord: 2.0ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 2.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.7ms | ActiveRecord: 1.1ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 1.2ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1476)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 1.8ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 1.8ms | Allocations: 1451)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 2.7ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 1.3ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 2.2ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.9ms | ActiveRecord: 1.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 2.2ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.3ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 9.7ms | ActiveRecord: 0.4ms | Allocations: 1446)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.4ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 8.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1445)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.9ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1402)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.4ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 25ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 25ms (Views: 1.9ms | ActiveRecord: 0.7ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.3ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.9ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 2.9ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.9ms | ActiveRecord: 1.7ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.9ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 106ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 1.3ms | ActiveRecord: 0.8ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 2.3ms | ActiveRecord: 0.8ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 121ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 1.2ms | ActiveRecord: 2.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.0ms | ActiveRecord: 0.9ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.9ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 2.1ms | ActiveRecord: 0.6ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1569)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 1.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1421)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1397)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 2.0ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.1ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 2.4ms | Allocations: 1396)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 1.1ms | ActiveRecord: 1.0ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.2ms | ActiveRecord: 0.8ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.2ms | ActiveRecord: 0.9ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.9ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 3.3ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 1.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 2.1ms | ActiveRecord: 0.7ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1397)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 2.0ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 2.5ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 2.2ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 1.9ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1389)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 3232)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:51 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1436)
+
+
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 26ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 3290)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1399)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1397)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1523)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 1.4ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.6ms | ActiveRecord: 1.3ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 25ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 34ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.1ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 1.3ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 31ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.7ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 2.1ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 1.6ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.5ms | ActiveRecord: 1.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1448)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:45:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 31ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.7ms | ActiveRecord: 2.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.6ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.9ms | ActiveRecord: 0.6ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 2.0ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1446)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 3.2ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 2.8ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 1.5ms | ActiveRecord: 0.6ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.9ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.1ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.6ms | ActiveRecord: 0.7ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.9ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.1ms | ActiveRecord: 0.6ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 26ms (Views: 1.3ms | ActiveRecord: 0.7ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.8ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 1.3ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 1.2ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.8ms | ActiveRecord: 0.9ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 325ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 39ms (Views: 1.9ms | ActiveRecord: 0.7ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.9ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.5ms | ActiveRecord: 0.8ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 1.7ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 2.3ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 26ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (16.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 31ms (Views: 1.8ms | ActiveRecord: 16.3ms | Allocations: 1448)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 92ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 37ms (Views: 0.9ms | ActiveRecord: 0.9ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 2.4ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.5ms | ActiveRecord: 0.7ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 1.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.0ms | ActiveRecord: 0.8ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (3.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 1.1ms | ActiveRecord: 3.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 2.0ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.9ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 2.0ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.2ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 1.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.7ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 10.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 1.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.9ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1444)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 2.1ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 2.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 83ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 1.0ms | ActiveRecord: 1.1ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.0ms | ActiveRecord: 0.8ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 2.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 1.8ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.8ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 1.8ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 1.3ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.9ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 75ms (Views: 1.1ms | ActiveRecord: 0.9ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 26ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 28ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1445)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.1ms | ActiveRecord: 0.9ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 2.0ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 1.7ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 2.0ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.7ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.7ms | ActiveRecord: 3.2ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 1.0ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.9ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 56ms (Views: 0.6ms | ActiveRecord: 1.1ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 1.3ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 30ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 1.2ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.3ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 2.1ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 1.2ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 2.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.1ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 2.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.8ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 25ms (Views: 10.7ms | ActiveRecord: 0.7ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 32ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 1.1ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 1.4ms | ActiveRecord: 0.9ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.5ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.9ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 39ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 73ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.0ms | ActiveRecord: 0.8ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 2.0ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1446)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.8ms | ActiveRecord: 0.9ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1585)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.9ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.5ms | ActiveRecord: 0.9ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 2.0ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.7ms | ActiveRecord: 0.8ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 1.5ms | ActiveRecord: 0.9ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:38 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 2606)
+
+
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1882)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 38ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 1.7ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 1.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.1ms | ActiveRecord: 0.7ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 40ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1445)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 3.0ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.0ms | ActiveRecord: 1.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 2.0ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.1ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.2ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.7ms | ActiveRecord: 0.7ms | Allocations: 1444)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.2ms | ActiveRecord: 0.6ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 52ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.6ms | ActiveRecord: 2.9ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 26ms (Views: 0.7ms | ActiveRecord: 2.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 1.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.7ms | ActiveRecord: 0.7ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 38ms (Views: 0.7ms | ActiveRecord: 1.0ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 11.9ms | ActiveRecord: 0.8ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.4ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 1.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 2.4ms | ActiveRecord: 0.7ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 4.9ms | ActiveRecord: 0.8ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.2ms | ActiveRecord: 0.7ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 1.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.2ms | ActiveRecord: 0.7ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 55ms (Views: 2.0ms | ActiveRecord: 0.8ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 2.5ms | ActiveRecord: 0.7ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 1.0ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 3.9ms | ActiveRecord: 0.9ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 1.1ms | ActiveRecord: 0.8ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 61ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 1.0ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.8ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 2.3ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 1.1ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 1.8ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.7ms | ActiveRecord: 0.7ms | Allocations: 1424)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.9ms | ActiveRecord: 0.7ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1398)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 3.0ms | ActiveRecord: 0.7ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1402)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 2.7ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1400)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:52 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 43ms (Views: 1.0ms | ActiveRecord: 0.8ms | Allocations: 1444)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.9ms | ActiveRecord: 2.1ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1391)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:55 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:55 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.8ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 1.0ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 36ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1448)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.8ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.2ms | ActiveRecord: 1.1ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 2.1ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.9ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.8ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 1.1ms | Allocations: 1405)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:57 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:57 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1889)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:58 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:58 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1399)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1607)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:58 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1400)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.2ms | ActiveRecord: 0.8ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 112ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:46:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 345ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (4.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 34ms (Views: 0.5ms | ActiveRecord: 4.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1399)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1394)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 1.9ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1444)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1391)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.5ms | ActiveRecord: 2.0ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1444)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1611)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 1.3ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1469)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1402)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1391)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 1.2ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.1ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1398)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1616)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.5ms | ActiveRecord: 1.3ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 1.1ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.9ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 2.1ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.7ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.9ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 2.1ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1482)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 2.3ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.9ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1451)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.9ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 1.3ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.9ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 3.1ms | Allocations: 1444)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 2.3ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 2.1ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.5ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 1.2ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.1ms | ActiveRecord: 0.4ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 11.0ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 1.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 1.2ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 37ms (Views: 8.2ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.9ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 1.3ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 26ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.5ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.8ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 1.2ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.2ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.3ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1589)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 1.1ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.7ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.6ms | ActiveRecord: 1.0ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.2ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 1.4ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 1.2ms | ActiveRecord: 0.7ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 26ms (Views: 0.7ms | ActiveRecord: 2.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 2.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.6ms | ActiveRecord: 1.4ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 5.5ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.4ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1399)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (2.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 2.2ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.5ms | ActiveRecord: 1.1ms | Allocations: 1398)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 1.4ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:23 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 1.9ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.3ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 1.2ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 1.1ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.8ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 10.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 1.5ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 1.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1443)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 1.1ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.9ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 3.0ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1390)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1389)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1397)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 31ms (Views: 1.2ms | ActiveRecord: 0.5ms | Allocations: 1448)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1736)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1395)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:30 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 26ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 1.3ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1598)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 1.2ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 1.3ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 2.0ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1471)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1402)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 27ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.6ms | ActiveRecord: 1.8ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1674)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1398)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1468)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1626)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1397)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.2ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 22ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1473)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1393)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 1.3ms | Allocations: 1416)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1391)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:36 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1612)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1610)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1471)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 1.2ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 65ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 25ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1495)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1635)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1601)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1656)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 20ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1412)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 88ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 1.1ms | ActiveRecord: 1.9ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1406)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 2.3ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.8ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1438)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.9ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 1.2ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1440)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.7ms | ActiveRecord: 2.2ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 23ms (Views: 2.0ms | ActiveRecord: 0.4ms | Allocations: 1486)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1625)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 1.2ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 1.1ms | ActiveRecord: 1.0ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 2.1ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 1.8ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 2.4ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1414)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1437)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 1.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 1.3ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1441)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 30ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 167ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1473)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.7ms | ActiveRecord: 1.0ms | Allocations: 1439)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 2.0ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 16ms (Views: 1.7ms | ActiveRecord: 0.6ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1411)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.1ms | ActiveRecord: 0.4ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 1.8ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1416)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 1.1ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1404)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (1.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 1.7ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 179ms (Views: 1.3ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1424)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 24ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 1.0ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1425)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1422)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1432)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1820)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.5ms | ActiveRecord: 1.4ms | Allocations: 1405)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1430)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1427)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1434)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1436)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1417)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1418)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 1423)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 1.2ms | ActiveRecord: 0.6ms | Allocations: 1444)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1420)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1426)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1431)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1433)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 135ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1421)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1428)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 11ms (Views: 2.6ms | ActiveRecord: 0.6ms | Allocations: 1429)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 237ms (Views: 1.7ms | ActiveRecord: 0.6ms | Allocations: 1553)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:47:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1400)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:49:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:49:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:49:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:49:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:50:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:50:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:50:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:50:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:51:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:51:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:52:11 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:52:13 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:53:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:53:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:53:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:53:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:55:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:56:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:56:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:56:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:56:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:57:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:57:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:59:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:59:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:59:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:59:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:59:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:59:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:59:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:00:01 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (14.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 60ms (Views: 41.7ms | ActiveRecord: 14.4ms | Allocations: 1410)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:00:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:00:12 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.7ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:00:16 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.7ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:00:17 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 2.9ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:00:19 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.0ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:00:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 15:00:56 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 608ms (Views: 16.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:00:57 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.5ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:01:00 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.6ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.2ms | ActiveRecord: 0.9ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:01:09 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.1ms | ActiveRecord: 0.4ms | Allocations: 1415)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:01:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:03:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1389)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:03:19 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.6ms | ActiveRecord: 0.7ms | Allocations: 1407)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:03:26 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 4.2ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:03:28 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 2.8ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:05:01 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:05:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:05:03 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (1.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 3.8ms | ActiveRecord: 2.1ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:05:12 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:05:12 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.8ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:05:15 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.2ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:05:48 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:05:48 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.6ms | ActiveRecord: 0.6ms | Allocations: 1408)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:05:50 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:06:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:06:05 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.6ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:06:23 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:06:23 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.6ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:06:25 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.0ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:07:28 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.6ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:07:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:07:30 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.3ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:07:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:07:43 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:07:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:07:50 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 24ms (Views: 19.5ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:07:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1389)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:08:00 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.8ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:08:21 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:08:21 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.3ms | ActiveRecord: 0.4ms | Allocations: 1405)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:08:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:08:26 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:08:31 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:08:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:08:39 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:09:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.8ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:09:08 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:09:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:09:21 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.1ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:20:39 -0300
+ [1m[35m (14.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (28.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 46ms (Views: 2.7ms | ActiveRecord: 28.6ms | Allocations: 1409)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:20:42 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (2.9ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 2.4ms | ActiveRecord: 3.2ms | Allocations: 1432)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:21:11 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:21:11 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 2.8ms | ActiveRecord: 0.9ms | Allocations: 1407)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:21:14 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.0ms | ActiveRecord: 0.5ms | Allocations: 1406)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:21:20 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.9ms | ActiveRecord: 0.6ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:21:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:21:22 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 2.5ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:21:26 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:21:26 -0300
+Completed 200 OK in 8ms (Views: 3.6ms | ActiveRecord: 0.4ms | Allocations: 1510)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:21:30 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 2.2ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:21:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 19ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1389)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:21:33 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:21:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 9ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:21:41 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.6ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:22:06 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.0ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:22:06 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:22:08 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:22:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:22:27 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.1ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:22:45 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:22:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:22:47 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.3ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:33:56 -0300
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1409)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:34:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:38:37 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:38:37 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 2.2ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:38:40 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 2.8ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:38:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 38ms (Views: 1.9ms | ActiveRecord: 0.8ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:39:15 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:39:15 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 4.5ms | ActiveRecord: 0.5ms | Allocations: 1410)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:39:17 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 2.7ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:39:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 29ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:39:23 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 19ms (Views: 3.7ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:39:51 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 24ms (Views: 19.4ms | ActiveRecord: 0.8ms | Allocations: 1413)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:39:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:39:53 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 2.6ms | ActiveRecord: 0.5ms | Allocations: 1407)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:39:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:40:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:40:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:41:01 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 25ms (Views: 2.1ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:42:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:42:26 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:43:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:43:24 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 31ms (Views: 2.3ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:44:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:44:48 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.0ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:45:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 80ms (Views: 1.8ms | ActiveRecord: 0.8ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:45:45 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:45:49 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:45:49 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.8ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:46:08 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:46:08 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.5ms | ActiveRecord: 0.3ms | Allocations: 1408)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:46:15 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:46:17 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 2.0ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:46:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:46:42 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 6.2ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 15:55:38 -0300
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (24.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 586ms (Views: 36.6ms | ActiveRecord: 24.5ms | Allocations: 1366)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:55:41 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (22.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 40ms (Views: 2.4ms | ActiveRecord: 22.7ms | Allocations: 1459)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 15:59:39 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 15:59:39 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 3.8ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:02:11 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 16:02:11 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.3ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:02:33 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 16:02:34 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.9ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:03:27 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 16:03:27 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 4.4ms | ActiveRecord: 0.5ms | Allocations: 1416)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1387)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 16:03:40 -0300
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:03:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 56ms (Views: 52.5ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:03:46 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 487ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1346)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:04:00 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 490ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1346)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:04:40 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 16:04:40 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 48ms (Views: 43.4ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 21ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1387)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:04:45 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 483ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1346)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:05:06 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 97ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 119)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:05:50 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 485ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1344)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:05:53 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 34ms (Views: 14.1ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:06:04 -0300
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:06:04 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 577ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1349)
+
+
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:06:31 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 16:06:31 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 22ms (Views: 17.4ms | ActiveRecord: 0.5ms | Allocations: 1417)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1387)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:06:56 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 119)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:07:00 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 482ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:07:02 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.4ms | ActiveRecord: 0.5ms | Allocations: 1409)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:07:06 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 481ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:07:39 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 485ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1344)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:07:42 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.3ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:07:51 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 503ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:08:32 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 119)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:08:36 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 485ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:08:39 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.3ms | ActiveRecord: 0.8ms | Allocations: 1403)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:08:42 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 492ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1344)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:08:56 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 119)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:08:59 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 482ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:09:01 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.4ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:09:05 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 481ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1345)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:11:03 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 119)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:12:28 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 481ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1350)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:12:31 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 2.3ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:13:43 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 119)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:13:47 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 487ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:13:49 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 2.6ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:14:17 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 482ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:14:19 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.7ms | ActiveRecord: 0.6ms | Allocations: 1403)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:15:19 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 481ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:15:21 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 2.2ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:15:47 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 119)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:15:52 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 483ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1344)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:15:54 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:20:45 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 484ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1347)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:20:48 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1407)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:21:58 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 486ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1345)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:22:01 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.3ms | ActiveRecord: 0.5ms | Allocations: 1403)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:24:16 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 479ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1350)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:24:19 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:40:08 -0300
+ [1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": ,
+ "password": ,
+ "password_confirmation":
+ }
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at '{
+ "email": ,
+ "password": ,
+ "password_confirmation":
+ }'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": ,
+ "password": ,
+ "password_confirmation":
+ }
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:40:42 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": ,
+ "password": ,
+ "password_confirmation":
+ }
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at '{
+ "email": ,
+ "password": ,
+ "password_confirmation":
+ }'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": ,
+ "password": ,
+ "password_confirmation":
+ }
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:41:07 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": ,
+ "password": ,
+ "password_confirmation":
+ }
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at '{
+ "email": ,
+ "password": ,
+ "password_confirmation":
+ }'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": ,
+ "password": ,
+ "password_confirmation":
+ }
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:42:43 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": sarah01@mail.com,
+ "password": 123abc,
+ "password_confirmation":
+ }
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at '{
+ "email": sarah01@mail.com,
+ "password": 123abc,
+ "password_confirmation":
+ }'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": sarah01@mail.com,
+ "password": 123abc,
+ "password_confirmation":
+ }
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 16:43:33 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}
+[31mUnpermitted parameters: :password_confirmation, :authentication[0m
+[31mUnpermitted parameters: :password_confirmation, :authentication[0m
+ [1m[36mUser Load (74.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "sarah01@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 604ms (Views: 0.6ms | ActiveRecord: 74.3ms | Allocations: 1368)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:43:35 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.8ms | ActiveRecord: 0.6ms | Allocations: 1457)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 16:48:12 -0300
+ [1m[35m (0.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:17:in `show'
+Completed 200 OK in 504ms (Views: 25.8ms | ActiveRecord: 101.4ms | Allocations: 9967)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 16:48:16 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 27ms (Views: 4.7ms | ActiveRecord: 1.4ms | Allocations: 3849)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 16:52:55 -0300
+Processing by UsersController#index as HTML
+Completed 422 Unprocessable Entity in 49ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 259)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 16:53:30 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 38ms (Views: 29.5ms | ActiveRecord: 1.4ms | Allocations: 9361)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 16:53:53 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"bob@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "user"=>{"email"=>"bob@mail.com"}}
+[31mUnpermitted parameter: :user[0m
+Completed 422 Unprocessable Entity in 646ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 3934)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 16:54:41 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"bob@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "user"=>{"email"=>"bob@mail.com"}}
+[31mUnpermitted parameter: :user[0m
+Completed 422 Unprocessable Entity in 241ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 946)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 16:56:06 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": 'bob@mail.com',
+ "password": '123abc',
+ "password_confirmation": '123abc'
+ }
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at '{
+ "email": 'bob@mail.com',
+ "password": '123abc',
+ "password_confirmation": '123abc'
+ }'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": 'bob@mail.com',
+ "password": '123abc',
+ "password_confirmation": '123abc'
+ }
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 16:57:33 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": 'bob@mail.com',
+ "password": '123abc',
+ "password_confirmation": '123abc'
+ }
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at '{
+ "email": 'bob@mail.com',
+ "password": '123abc',
+ "password_confirmation": '123abc'
+ }'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": 'bob@mail.com',
+ "password": '123abc',
+ "password_confirmation": '123abc'
+ }
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 16:58:37 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": bob@mail.com,
+ "password": 123abc,
+ "password_confirmation": 123abc
+ }
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at '{
+ "email": bob@mail.com,
+ "password": 123abc,
+ "password_confirmation": 123abc
+ }'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": bob@mail.com,
+ "password": 123abc,
+ "password_confirmation": 123abc
+ }
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 16:59:51 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": bob@mail.com,
+ "password": 123abc,
+ "password_confirmation": 123abc
+ "name": "Bob",
+ "picture": "",
+ }
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at '{
+ "email": bob@mail.com,
+ "password": 123abc,
+ "password_confirmation": 123abc
+ "name": "Bob",
+ "picture": "",
+ }'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": bob@mail.com,
+ "password": 123abc,
+ "password_confirmation": 123abc
+ "name": "Bob",
+ "picture": "",
+ }
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:00:33 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:01:20 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+
+ActionDispatch::Http::Parameters::ParseError (416: unexpected token at 'object Object]'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+[object Object]
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:02:33 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 320ms (Views: 310.6ms | ActiveRecord: 8.2ms | Allocations: 6464)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:02:49 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+[31mUnpermitted parameter: :user[0m
+Completed 422 Unprocessable Entity in 269ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1385)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:04:02 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+Completed 422 Unprocessable Entity in 11ms (Views: 0.2ms | ActiveRecord: 1.4ms | Allocations: 6142)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:04:12 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.4ms | Allocations: 1224)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:05:05 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+Completed 422 Unprocessable Entity in 32ms (Views: 0.3ms | ActiveRecord: 1.2ms | Allocations: 6046)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:05:47 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+[31mUnpermitted parameter: :user[0m
+Completed 422 Unprocessable Entity in 295ms (Views: 0.2ms | ActiveRecord: 2.4ms | Allocations: 5808)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:06:30 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 39ms (Views: 25.7ms | ActiveRecord: 1.9ms | Allocations: 9359)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:06:41 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+[31mUnpermitted parameter: :user[0m
+Completed 422 Unprocessable Entity in 259ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1307)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:09:48 -0300
+ [1m[35m (14.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (13.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+[31mUnpermitted parameter: :user[0m
+Completed 422 Unprocessable Entity in 339ms (Views: 0.3ms | ActiveRecord: 1.3ms | Allocations: 9050)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:10:20 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+[31mUnpermitted parameter: :user[0m
+Completed 422 Unprocessable Entity in 248ms (Views: 0.2ms | ActiveRecord: 1.1ms | Allocations: 5770)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:11:43 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+Completed 422 Unprocessable Entity in 247ms (Views: 0.2ms | ActiveRecord: 1.4ms | Allocations: 5678)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:12:07 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.5ms | Allocations: 1271)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:14:29 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.7ms | Allocations: 2546)
+
+
+
+NoMethodError (undefined method `new!' for #
+Did you mean? new):
+
+app/controllers/users_controller.rb:4:in `create'
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:14:47 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (9.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 305ms (Views: 0.2ms | ActiveRecord: 11.5ms | Allocations: 6232)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:16:41 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 255ms (Views: 0.2ms | ActiveRecord: 1.5ms | Allocations: 6256)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:17:22 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+Completed 500 Internal Server Error in 255ms (ActiveRecord: 1.7ms | Allocations: 7233)
+
+
+
+NoMethodError (undefined method `messages' for #):
+
+app/controllers/users_controller.rb:13:in `create'
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:17:47 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+Completed 500 Internal Server Error in 253ms (ActiveRecord: 1.3ms | Allocations: 7242)
+
+
+
+NoMethodError (undefined method `error' for #
+Did you mean? errors):
+
+app/controllers/users_controller.rb:13:in `create'
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:18:03 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 261ms (Views: 0.2ms | ActiveRecord: 2.3ms | Allocations: 6281)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:19:08 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 254ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 1193)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:19:50 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 250ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 1195)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:20:41 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 248ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 803)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:21:23 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.4ms | Allocations: 1194)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:21:39 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 253ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1194)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:23:07 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 258ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 1194)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:23:26 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 249ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1194)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:25:13 -0300
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+Completed 422 Unprocessable Entity in 247ms (Views: 0.2ms | ActiveRecord: 1.1ms | Allocations: 5669)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:26:01 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 262ms (Views: 0.2ms | ActiveRecord: 2.9ms | Allocations: 6255)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:26:26 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 25ms (Views: 16.5ms | ActiveRecord: 1.9ms | Allocations: 9359)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:26:42 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 252ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1729)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:27:36 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 254ms (Views: 0.2ms | ActiveRecord: 1.7ms | Allocations: 6295)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:29:07 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "${formContent.email}"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 251ms (Views: 0.4ms | ActiveRecord: 0.3ms | Allocations: 1195)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:35:53 -0300
+ [1m[35m (0.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"bob@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"bob@mail.com", "picture"=>""}}
+ [1m[36mUser Load (14.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 269ms (Views: 1.0ms | ActiveRecord: 14.6ms | Allocations: 826)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:36:08 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.5ms | Allocations: 1195)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:36:55 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.2ms | Allocations: 1160)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:37:32 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"bob@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"bob@mail.com", "picture"=>""}}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 250ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 808)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:40:14 -0300
+
+NoMethodError (undefined method `devise_for' for #):
+
+config/routes.rb:6:in `block in '
+config/routes.rb:1:in `'
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:49:05 -0300
+ [1m[35m (14.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (13.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+
+SyntaxError (C:/Users/Usuario/reactProjects/findYourHouse/api/app/controllers/users_controller.rb:9: syntax error, unexpected ':', expecting tSTRING_DEND
+...word] == password_confirmation: params[:password_confirmatio...
+... ^):
+
+app/controllers/users_controller.rb:9: syntax error, unexpected ':', expecting tSTRING_DEND
+app/controllers/users_controller.rb:9: syntax error, unexpected ':', expecting tSTRING_DEND
+Started GET "/favicon.ico" for 127.0.0.1 at 2020-04-28 17:49:07 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:49:25 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (39.4ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 82ms (Views: 22.8ms | ActiveRecord: 41.7ms | Allocations: 10512)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 17:49:51 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"bob@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"bob@mail.com", "picture"=>""}}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 277ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1692)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:50:00 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.2ms | Allocations: 1180)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 17:51:06 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.3ms | Allocations: 1163)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 18:00:05 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"bob@mail.com", "password"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"bob@mail.com", "picture"=>""}}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 401 Unauthorized in 255ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 5464)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 18:01:08 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"bob@mail.com", "password"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"bob@mail.com", "picture"=>""}}
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/users_controller.rb:6:in `create'
+ [1m[36mUser Create (13.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Bob"], ["email", "bob@mail.com"], ["password_digest", "$2a$12$/zeA1BVuKE2p4qnMOBA0EOnJ1vo47o626ihtRZXQyevGUJKGwuK2q"], ["created_at", "2020-04-28 21:01:09.061210"], ["updated_at", "2020-04-28 21:01:09.061210"]]
+ ↳ app/controllers/users_controller.rb:6:in `create'
+ [1m[35m (168.8ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/users_controller.rb:6:in `create'
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 201 Created in 1061ms (Views: 0.5ms | ActiveRecord: 184.4ms | Allocations: 8808)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:01:12 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 41ms (Views: 4.0ms | ActiveRecord: 1.1ms | Allocations: 4185)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 18:01:17 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.5ms | Allocations: 1376)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:02:16 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:02:16 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#index as */*
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 47ms (Views: 0.7ms | ActiveRecord: 1.0ms | Allocations: 10594)
+
+
+ [1m[36mMeet Load (0.7ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 63ms (Views: 9.1ms | ActiveRecord: 4.7ms | Allocations: 14126)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 18:03:02 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"anon@mail.com", "picture"=>""}}
+ [1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/users_controller.rb:6:in `create'
+ [1m[36mUser Create (3.8ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Bob"], ["email", "anon@mail.com"], ["password_digest", "$2a$12$FwUDuQOasCLKsCiRLwe7w.xhFvqkK5fWC4/oYjxAghOt9HgjemiHC"], ["created_at", "2020-04-28 21:03:02.999646"], ["updated_at", "2020-04-28 21:03:02.999646"]]
+ ↳ app/controllers/users_controller.rb:6:in `create'
+ [1m[35m (148.7ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/users_controller.rb:6:in `create'
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 201 Created in 1017ms (Views: 0.2ms | ActiveRecord: 153.5ms | Allocations: 4063)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:03:05 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 12ms (Views: 3.0ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 18:03:09 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.3ms | Allocations: 1561)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 18:04:12 -0300
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": "anon@mail.com",
+ "password": "123abc",
+ }
+
+ActionDispatch::Http::Parameters::ParseError (767: unexpected token at '{
+ "email": "anon@mail.com",
+ "password": "123abc",
+ }'):
+
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:115:in `rescue in parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:111:in `parse_formatted_parameters'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:381:in `block in POST'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch'
+rack (2.2.2) lib/rack/request.rb:69:in `fetch_header'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:380:in `POST'
+actionpack (6.0.2.2) lib/action_dispatch/http/parameters.rb:55:in `parameters'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:279:in `_wrapper_enabled?'
+actionpack (6.0.2.2) lib/action_controller/metal/params_wrapper.rb:244:in `process_action'
+activerecord (6.0.2.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
+actionpack (6.0.2.2) lib/abstract_controller/base.rb:136:in `process'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:191:in `dispatch'
+actionpack (6.0.2.2) lib/action_controller/metal.rb:252:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:33:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+warden (1.2.8) lib/warden/manager.rb:36:in `block in call'
+warden (1.2.8) lib/warden/manager.rb:34:in `catch'
+warden (1.2.8) lib/warden/manager.rb:34:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:40:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Error occurred while parsing request parameters.
+Contents:
+
+{
+ "email": "anon@mail.com",
+ "password": "123abc",
+ }
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 18:05:55 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 533ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 1388)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:05:58 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 68ms (Views: 64.3ms | ActiveRecord: 0.5ms | Allocations: 1408)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:06:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 20ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:06:12 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.3ms | ActiveRecord: 0.4ms | Allocations: 1409)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:07:03 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.2ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+ [1m[35m (16.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" INNER JOIN "user_meets" ON "meets"."id" = "user_meets"."meet_id" WHERE "user_meets"."user_id" = ? LIMIT ?[0m [["user_id", 4], ["LIMIT", 11]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (2.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "AA meeting"], ["description", "This is a meeting for the members unnable to leave their home during the lock up period. It happens weekly avery Monday"], ["frequency", "weekly"], ["duration", 1.0], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-28 21:14:15.280766"], ["updated_at", "2020-04-28 21:14:15.280766"]]
+ [1m[35m (334.4ms)[0m [1m[36mcommit transaction[0m
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 18:14:49 -0300
+ [1m[35m (0.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 501ms (Views: 0.4ms | ActiveRecord: 0.6ms | Allocations: 1371)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:14:52 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.6ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 40ms (Views: 32.7ms | ActiveRecord: 1.8ms | Allocations: 8111)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 18:17:00 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 159ms (Views: 13.5ms | ActiveRecord: 1.4ms | Allocations: 9778)
+
+
+Started GET "/users" for 127.0.0.1 at 2020-04-28 18:17:07 -0300
+Processing by UsersController#index as HTML
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.4ms | Allocations: 1540)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:17:10 -0300
+Processing by MeetsController#index as HTML
+Completed 422 Unprocessable Entity in 50ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 531)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:20:23 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:20:23 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#index as */*
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 33ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 10548)
+
+
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 58ms (Views: 18.7ms | ActiveRecord: 3.4ms | Allocations: 20452)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:20:30 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.3ms | ActiveRecord: 0.5ms | Allocations: 1629)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:20:40 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:20:40 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 4.6ms | ActiveRecord: 0.7ms | Allocations: 1633)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:22:23 -0300
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:22:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1629)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:22:50 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:22:50 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 88ms (Views: 83.2ms | ActiveRecord: 0.4ms | Allocations: 1633)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:22:59 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:22:59 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 4.7ms | ActiveRecord: 0.7ms | Allocations: 1636)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:24:24 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:24:24 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.3ms | ActiveRecord: 0.4ms | Allocations: 1634)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:25:46 -0300
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:25:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1399)
+
+
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 20ms (Views: 16.5ms | ActiveRecord: 0.4ms | Allocations: 1631)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:25:53 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:25:53 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.2ms | ActiveRecord: 0.4ms | Allocations: 1637)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:26:23 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:26:23 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.8ms | ActiveRecord: 0.4ms | Allocations: 1639)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:26:56 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:26:56 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.8ms | ActiveRecord: 0.4ms | Allocations: 1636)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:28:10 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:28:10 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.5ms | ActiveRecord: 0.4ms | Allocations: 1634)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:28:20 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:28:20 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.4ms | ActiveRecord: 0.5ms | Allocations: 1639)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:28:29 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:28:29 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.2ms | ActiveRecord: 0.4ms | Allocations: 1636)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:28:34 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:28:34 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.5ms | ActiveRecord: 0.4ms | Allocations: 1639)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:29:05 -0300
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:29:05 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1397)
+
+
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 2.3ms | ActiveRecord: 0.4ms | Allocations: 1629)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:29:25 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:29:25 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.3ms | ActiveRecord: 0.4ms | Allocations: 1639)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:30:26 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:30:26 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.4ms | ActiveRecord: 0.4ms | Allocations: 1639)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:31:08 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:31:08 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1631)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:31:20 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:31:20 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.6ms | ActiveRecord: 0.5ms | Allocations: 1633)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:31:27 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:31:27 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 5.1ms | ActiveRecord: 0.4ms | Allocations: 1633)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:31:53 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:31:53 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.1ms | ActiveRecord: 0.4ms | Allocations: 1633)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:32:21 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:32:21 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 33ms (Views: 28.5ms | ActiveRecord: 0.4ms | Allocations: 1636)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:32:28 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:32:28 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.2ms | ActiveRecord: 0.4ms | Allocations: 1634)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+ [1m[35m (31.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to ChangeDurationFromMeets (20200428213607)
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to ChangeDurationFromMeets (20200428213607)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (90.2ms)[0m [1m[35mCREATE TEMPORARY TABLE "ameets" ("id" integer NOT NULL PRIMARY KEY, "title" varchar DEFAULT NULL, "description" text DEFAULT NULL, "frequency" varchar DEFAULT NULL, "duration" float DEFAULT NULL, "day" varchar DEFAULT NULL, "members" integer DEFAULT NULL, "max_members" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "created_by" varchar DEFAULT NULL)[0m
+ [1m[35m (0.3ms)[0m [1m[32mINSERT INTO "ameets" ("id","title","description","frequency","duration","day","members","max_members","created_at","updated_at","created_by")
+ SELECT "id","title","description","frequency","duration","day","members","max_members","created_at","updated_at","created_by" FROM "meets"[0m
+ [1m[35m (2.7ms)[0m [1m[35mDROP TABLE "meets"[0m
+ [1m[35m (0.6ms)[0m [1m[35mCREATE TABLE "meets" ("id" integer NOT NULL PRIMARY KEY, "title" varchar DEFAULT NULL, "description" text DEFAULT NULL, "frequency" varchar DEFAULT NULL, "duration" float DEFAULT NULL, "day" varchar DEFAULT NULL, "members" integer DEFAULT NULL, "max_members" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "created_by" varchar DEFAULT NULL)[0m
+ [1m[35m (0.3ms)[0m [1m[32mINSERT INTO "meets" ("id","title","description","frequency","duration","day","members","max_members","created_at","updated_at","created_by")
+ SELECT "id","title","description","frequency","duration","day","members","max_members","created_at","updated_at","created_by" FROM "ameets"[0m
+ [1m[35m (0.3ms)[0m [1m[35mDROP TABLE "ameets"[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[36mprimary::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200428213607"]]
+ [1m[35m (91.7ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (5.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" ORDER BY "meets"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" ORDER BY "meets"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Update (4.8ms)[0m [1m[33mUPDATE "meets" SET "duration" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["duration", 1.5], ["updated_at", "2020-04-28 21:42:41.733870"], ["id", 2]]
+ [1m[35m (208.2ms)[0m [1m[36mcommit transaction[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:42:50 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:42:50 -0300
+ [1m[35m (0.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 63ms (Views: 1.5ms | ActiveRecord: 0.6ms | Allocations: 10173)
+
+
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 84ms (Views: 15.6ms | ActiveRecord: 0.6ms | Allocations: 19543)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:46:14 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.2ms | ActiveRecord: 0.5ms | Allocations: 1629)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:47:01 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:47:01 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.3ms | ActiveRecord: 0.4ms | Allocations: 1639)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:47:19 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:47:19 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 5.3ms | ActiveRecord: 0.5ms | Allocations: 1633)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:47:45 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:47:45 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 5.0ms | ActiveRecord: 0.4ms | Allocations: 1636)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:47:53 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:47:53 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 2.8ms | ActiveRecord: 0.4ms | Allocations: 1639)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 18:49:35 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 4.0ms | ActiveRecord: 0.8ms | Allocations: 1629)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:52:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:52:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:52:17 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:52:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:52:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 9ms (Views: 1.4ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:53:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 29ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1393)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:53:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1393)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:53:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:53:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:54:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:54:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:55:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.9ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:57:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:57:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:58:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 10ms (Views: 2.2ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:59:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:59:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-28 18:59:34 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.6ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 404 Not Found in 17ms (Views: 0.2ms | ActiveRecord: 0.9ms | Allocations: 1356)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 18:59:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-28 18:59:48 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 404 Not Found in 9ms (Views: 0.1ms | ActiveRecord: 0.7ms | Allocations: 1231)
+
+
+Started GET "/m" for 127.0.0.1 at 2020-04-28 18:59:53 -0300
+
+ActionController::RoutingError (No route matches [GET] "/m"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/favicon.ico" for 127.0.0.1 at 2020-04-28 18:59:55 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:00:34 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:00:34 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 4.3ms | ActiveRecord: 0.4ms | Allocations: 1633)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:00:39 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:04:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 168ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:04:26 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 1.6ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:05:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:05:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:05:46 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:05:48 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:06:43 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:06:46 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:08:20 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 1.2ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:08:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:08:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.9ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:08:58 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:09:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:09:11 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:09:58 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 56ms (Views: 49.4ms | ActiveRecord: 0.7ms | Allocations: 1629)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:10:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:10:37 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:10:44 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.4ms | ActiveRecord: 0.4ms | Allocations: 1629)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:10:52 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:10:53 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.0ms | ActiveRecord: 0.4ms | Allocations: 1639)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:11:31 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:11:31 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.8ms | ActiveRecord: 0.4ms | Allocations: 1636)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:11:44 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:11:44 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 5.4ms | ActiveRecord: 0.4ms | Allocations: 1639)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:11:52 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:11:52 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 4.6ms | ActiveRecord: 0.6ms | Allocations: 1636)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:13:21 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:13:21 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 4.2ms | ActiveRecord: 0.5ms | Allocations: 1635)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:13:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:13:29 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:15:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:16:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:05 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:07 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:07 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1444)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:10 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:10 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:10 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1454)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:10 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1454)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (1.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 1.3ms | Allocations: 1445)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:12 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:12 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:12 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1460)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:12 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1468)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:12 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1452)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:12 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:12 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1449)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1439)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:12 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1518)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1508)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1457)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1485)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1479)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 22ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1468)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 37ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1469)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1456)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1459)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:14 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1465)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:15 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1475)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:15 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 31ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1453)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1450)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 1.2ms | ActiveRecord: 0.7ms | Allocations: 1555)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:15 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:16 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:16 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 19ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1649)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1654)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1459)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1457)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1461)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1462)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1481)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1473)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1458)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1470)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1469)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1467)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1456)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1461)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.4ms | Allocations: 1490)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1471)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1473)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1481)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1470)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1460)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1475)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 1.5ms | ActiveRecord: 0.4ms | Allocations: 1479)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 25ms (Views: 2.1ms | ActiveRecord: 0.6ms | Allocations: 1487)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 27ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1454)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1458)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.4ms | Allocations: 1473)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 21ms (Views: 1.2ms | ActiveRecord: 0.5ms | Allocations: 1452)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1440)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:18 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:18 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1665)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1462)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1468)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (1.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1478)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1460)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1463)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 1.2ms | ActiveRecord: 0.4ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.4ms | Allocations: 1467)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1470)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1465)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 2.8ms | ActiveRecord: 0.4ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1461)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1474)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1479)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1472)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1459)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1460)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1475)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1476)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1474)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1454)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1467)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:19 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1462)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1477)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1475)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1458)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1461)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 2.2ms | ActiveRecord: 0.5ms | Allocations: 1467)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1478)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1465)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (1.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 1.2ms | Allocations: 1473)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.4ms | Allocations: 1474)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1458)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1460)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1475)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1454)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1463)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1471)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1486)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1471)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1462)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1480)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1481)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1470)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1473)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1460)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1480)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1458)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1462)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1470)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1475)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1462)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1454)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1468)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1457)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1461)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1465)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1471)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1465)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1477)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1475)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1458)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1467)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1472)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1465)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1465)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1457)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1465)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1478)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1467)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1458)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1477)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.9ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 1.2ms | Allocations: 1490)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.9ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 1.1ms | Allocations: 1474)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1453)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1463)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1472)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1457)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1468)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1479)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1459)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1471)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1457)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1460)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1455)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1473)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1471)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1454)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1457)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1458)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1470)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 15ms (Views: 2.0ms | ActiveRecord: 0.5ms | Allocations: 1467)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1463)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1469)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1462)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1484)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1463)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1471)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1463)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (1.8ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 2.1ms | Allocations: 1524)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1475)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1471)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1459)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1459)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1475)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1487)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1473)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1454)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1477)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:25 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1471)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:25 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1452)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:25 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1458)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:16:25 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:16:27 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:16:27 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 4.5ms | ActiveRecord: 0.4ms | Allocations: 1636)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:17:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:07 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:09 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:09 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1445)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:11 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:11 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:11 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1457)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:11 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (1.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 1.3ms | Allocations: 1449)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1440)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 1.2ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:13 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:13 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1614)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:13 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1447)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:13 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1442)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:15 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:15 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:15 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1458)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1473)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:16 -0300
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1576)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:16 -0300
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1444)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1452)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1442)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:18 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:18 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1463)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1462)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1449)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1454)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1450)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1440)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:18 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1447)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:18 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1450)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1455)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:18 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1438)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1437)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1488)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1476)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1472)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1468)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1479)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1461)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 16ms (Views: 1.3ms | ActiveRecord: 0.6ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1484)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1459)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1461)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1465)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1467)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1472)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1461)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1452)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1440)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:21 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:22 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:22 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1456)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1659)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 1.2ms | Allocations: 1481)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1465)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1470)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1452)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 19ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1461)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 1.4ms | ActiveRecord: 0.5ms | Allocations: 1461)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1471)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1479)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1463)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1454)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1478)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1460)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 1.2ms | ActiveRecord: 0.5ms | Allocations: 1474)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1457)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1471)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1454)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1450)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1461)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1463)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1463)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 17ms (Views: 2.2ms | ActiveRecord: 0.5ms | Allocations: 1486)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 1465)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1461)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1468)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1479)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1467)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1460)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1467)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1469)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1467)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1464)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1465)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 21ms (Views: 1.0ms | ActiveRecord: 0.8ms | Allocations: 1469)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1466)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1481)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1477)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1465)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:17:25 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1461)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1449)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:25 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.6ms | ActiveRecord: 0.4ms | Allocations: 1638)
+
+
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:17:45 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:17:45 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.6ms | ActiveRecord: 0.4ms | Allocations: 1633)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:17:49 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:18:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:18:32 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:18:41 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.5ms | ActiveRecord: 0.5ms | Allocations: 1629)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:18:44 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:20:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:20:11 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:20:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:20:33 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:20:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.8ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:20:43 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1435)
+
+
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (0.9ms)[0m [1m[34mSELECT "meets".* FROM "meets" INNER JOIN "user_meets" ON "meets"."id" = "user_meets"."meet_id" WHERE "user_meets"."user_id" = ? LIMIT ?[0m [["user_id", 4], ["LIMIT", 11]]
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Update (4.8ms)[0m [1m[33mUPDATE "meets" SET "created_by" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["created_by", "4"], ["updated_at", "2020-04-28 22:24:05.799127"], ["id", 2]]
+ [1m[35m (131.5ms)[0m [1m[36mcommit transaction[0m
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:24:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:24:16 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:24:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:24:32 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:24:59 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:25:01 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1442)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:27:40 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 49ms (Views: 0.7ms | ActiveRecord: 2.8ms | Allocations: 9955)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:27:43 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:41:in `set_meet'
+Completed 200 OK in 24ms (Views: 0.8ms | ActiveRecord: 1.3ms | Allocations: 10167)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:28:42 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 30ms (Views: 0.7ms | ActiveRecord: 1.6ms | Allocations: 9918)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:28:44 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+Completed 200 OK in 36ms (Views: 0.7ms | ActiveRecord: 1.8ms | Allocations: 10777)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:30:52 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 39ms (Views: 0.7ms | ActiveRecord: 2.4ms | Allocations: 9955)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:30:55 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+Completed 200 OK in 50ms (Views: 2.1ms | ActiveRecord: 3.4ms | Allocations: 10864)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:31:36 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 204ms (Views: 1.2ms | ActiveRecord: 2.6ms | Allocations: 9919)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:31:39 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+Completed 200 OK in 36ms (Views: 1.3ms | ActiveRecord: 1.8ms | Allocations: 10864)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:31:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:31:52 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+Completed 200 OK in 35ms (Views: 1.5ms | ActiveRecord: 0.8ms | Allocations: 2141)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:32:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:32:12 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.9ms | Allocations: 2139)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:32:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:32:23 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 1.1ms | Allocations: 2139)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:32:47 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:32:49 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 2139)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:33:19 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 123ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:33:22 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+Completed 200 OK in 17ms (Views: 1.3ms | ActiveRecord: 1.0ms | Allocations: 2139)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:34:22 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 49ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:34:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 2139)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:34:34 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:34:37 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+Completed 200 OK in 15ms (Views: 6.9ms | ActiveRecord: 0.7ms | Allocations: 2139)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:34:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 22ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:34:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.8ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:35:00 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:43:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+Completed 200 OK in 12ms (Views: 1.2ms | ActiveRecord: 0.9ms | Allocations: 2139)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:37:12 -0300
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 241ms (Views: 1.2ms | ActiveRecord: 2.6ms | Allocations: 9956)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:37:15 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.4ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 1367ms (Views: 186.1ms | ActiveRecord: 3.6ms | Allocations: 17628)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:37:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 39ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:37:27 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 24ms (Views: 3.1ms | ActiveRecord: 1.2ms | Allocations: 2977)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:38:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:38:37 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 18ms (Views: 4.0ms | ActiveRecord: 1.1ms | Allocations: 2977)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 19:39:08 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1392)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:39:11 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 115ms (Views: 98.5ms | ActiveRecord: 0.9ms | Allocations: 2977)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:43:29 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.4ms | ActiveRecord: 0.6ms | Allocations: 1664)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 19:47:24 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (95.9ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 790ms (Views: 0.6ms | ActiveRecord: 96.0ms | Allocations: 1606)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 19:47:29 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 99ms (Views: 45.8ms | ActiveRecord: 0.7ms | Allocations: 1636)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 19:47:40 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 116ms (Views: 88.2ms | ActiveRecord: 1.1ms | Allocations: 2978)
+
+
+ [1m[36mMeet Load (159.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (23.6ms)[0m [1m[34mSELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[35m (27.8ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (56.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Meeting 4"], ["description", "Our last meeting of the month"], ["date", "2020-05-04 00:00:00"], ["confirmed_members", "5"], ["meet_id", 2], ["link", "https://microverse.zoom.us/j/7663287333"], ["created_at", "2020-04-29 00:47:30.765856"], ["updated_at", "2020-04-29 00:47:30.765856"]]
+ [1m[35m (613.7ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[35m (0.7ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Update (21.0ms)[0m [1m[33mUPDATE "users" SET "picture" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["picture", "https://joeschmoe.io/api/v1/female/jane"], ["updated_at", "2020-04-29 00:56:54.721718"], ["id", 4]]
+ [1m[35m (99.3ms)[0m [1m[36mcommit transaction[0m
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:00:43 -0300
+ [1m[35m (35.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 326ms (Views: 14.5ms | ActiveRecord: 1.9ms | Allocations: 11537)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:00:46 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 56ms (Views: 39.7ms | ActiveRecord: 3.2ms | Allocations: 10665)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:01:25 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.8ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 867ms (Views: 497.1ms | ActiveRecord: 4.1ms | Allocations: 15051)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:13:03 -0300
+ [1m[35m (1.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 503ms (Views: 64.4ms | ActiveRecord: 0.7ms | Allocations: 1424)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:13:10 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.4ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 21ms (Views: 8.8ms | ActiveRecord: 1.4ms | Allocations: 3286)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:13:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 9ms (Views: 1.7ms | ActiveRecord: 0.6ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:13:59 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 12ms (Views: 4.0ms | ActiveRecord: 1.0ms | Allocations: 3220)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:14:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:14:34 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (1.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 18ms (Views: 4.8ms | ActiveRecord: 2.5ms | Allocations: 3221)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:14:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 1.1ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:14:54 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 17ms (Views: 6.4ms | ActiveRecord: 1.1ms | Allocations: 3220)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:16:01 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 9ms (Views: 1.2ms | ActiveRecord: 0.4ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:16:03 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 15ms (Views: 4.1ms | ActiveRecord: 1.1ms | Allocations: 3220)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:16:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:16:12 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 4.7ms | ActiveRecord: 0.8ms | Allocations: 3220)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:16:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:16:41 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 4.1ms | ActiveRecord: 0.9ms | Allocations: 3220)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:17:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:17:27 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 16ms (Views: 4.6ms | ActiveRecord: 0.9ms | Allocations: 3220)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:17:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:17:43 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 12ms (Views: 4.2ms | ActiveRecord: 0.9ms | Allocations: 3220)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:17:49 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:17:51 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 4.7ms | ActiveRecord: 1.0ms | Allocations: 3220)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:21:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:21:12 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 3.3ms | ActiveRecord: 1.0ms | Allocations: 3220)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:21:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:21:41 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 4.7ms | ActiveRecord: 1.1ms | Allocations: 3220)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 22:22:15 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (10.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 200 OK in 583ms (Views: 0.6ms | ActiveRecord: 10.5ms | Allocations: 1622)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:22:18 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 4.1ms | ActiveRecord: 1.0ms | Allocations: 1666)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 22:27:14 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 510ms (Views: 0.6ms | ActiveRecord: 3.7ms | Allocations: 10576)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:27:17 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 26ms (Views: 13.9ms | ActiveRecord: 1.9ms | Allocations: 10524)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:28:48 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:28:48 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#index as */*
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 34ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 10549)
+
+
+ [1m[36mMeet Load (0.9ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 70ms (Views: 23.6ms | ActiveRecord: 4.5ms | Allocations: 20493)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:29:53 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:29:53 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 24ms (Views: 20.0ms | ActiveRecord: 0.4ms | Allocations: 2447)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1452)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:30:41 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:30:41 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 3.9ms | ActiveRecord: 0.7ms | Allocations: 1668)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1393)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 22:31:15 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 494ms (Views: 0.4ms | ActiveRecord: 0.4ms | Allocations: 2194)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:31:18 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.7ms | ActiveRecord: 0.4ms | Allocations: 1637)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:31:50 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:31:50 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 10.9ms | ActiveRecord: 0.4ms | Allocations: 1642)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1393)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:32:32 -0300
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:32:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1398)
+
+
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 2.6ms | ActiveRecord: 0.4ms | Allocations: 1637)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:32:55 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:32:55 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 4.4ms | ActiveRecord: 0.4ms | Allocations: 1644)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1393)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:33:47 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:33:47 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 4.0ms | ActiveRecord: 0.5ms | Allocations: 1647)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1393)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:34:16 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:34:16 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.0ms | ActiveRecord: 0.5ms | Allocations: 1647)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1393)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:35:07 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:35:07 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.7ms | ActiveRecord: 0.6ms | Allocations: 1647)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1393)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:36:10 -0300
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:36:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1403)
+
+
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 2.3ms | ActiveRecord: 0.4ms | Allocations: 1637)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:36:30 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:36:30 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 4.1ms | ActiveRecord: 0.4ms | Allocations: 1649)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1393)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 22:37:01 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 501ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1941)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:37:04 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.3ms | ActiveRecord: 0.5ms | Allocations: 1637)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:37:37 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:37:37 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.8ms | ActiveRecord: 0.5ms | Allocations: 1642)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1393)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 22:37:54 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 486ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1937)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:37:57 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.3ms | ActiveRecord: 0.5ms | Allocations: 1637)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 22:38:46 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 484ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1938)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:38:49 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.5ms | ActiveRecord: 0.6ms | Allocations: 1637)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:39:03 -0300
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:39:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 16ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 1397)
+
+
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.9ms | ActiveRecord: 0.6ms | Allocations: 1637)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:40:36 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:40:36 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 4.1ms | ActiveRecord: 0.5ms | Allocations: 1642)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1393)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 22:40:53 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 485ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1938)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:40:55 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.8ms | ActiveRecord: 0.4ms | Allocations: 1637)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:41:52 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:41:52 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.0ms | ActiveRecord: 0.4ms | Allocations: 1647)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1393)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:42:59 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:42:59 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 5.2ms | ActiveRecord: 0.5ms | Allocations: 1647)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1393)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:43:18 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:43:18 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.8ms | ActiveRecord: 0.4ms | Allocations: 1641)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1393)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:43:33 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:43:33 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.9ms | ActiveRecord: 0.5ms | Allocations: 1646)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1393)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:44:13 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:44:13 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 5.9ms | ActiveRecord: 0.4ms | Allocations: 1642)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1396)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:44:27 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:44:27 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.6ms | ActiveRecord: 0.4ms | Allocations: 1642)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1393)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:45:14 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:45:14 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.0ms | ActiveRecord: 0.4ms | Allocations: 1647)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:45:55 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 33ms (Views: 16.0ms | ActiveRecord: 2.4ms | Allocations: 10838)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:46:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.6ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:46:27 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.8ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 16ms (Views: 4.5ms | ActiveRecord: 1.5ms | Allocations: 3220)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:49:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1393)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:49:52 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.9ms | Allocations: 1393)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:49:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:49:59 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 3.9ms | ActiveRecord: 1.1ms | Allocations: 3220)
+
+
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:50:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 10ms (Views: 1.9ms | ActiveRecord: 0.6ms | Allocations: 1393)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-28 22:50:04 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.5ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 5.7ms | ActiveRecord: 1.3ms | Allocations: 3220)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 22:50:26 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 487ms (Views: 0.3ms | ActiveRecord: 0.4ms | Allocations: 1941)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:50:29 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 4.9ms | ActiveRecord: 0.5ms | Allocations: 1637)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:51:34 -0300
+Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:51:34 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 4.5ms | ActiveRecord: 0.4ms | Allocations: 1644)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1393)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:51:57 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-28 22:51:57 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 18ms (Views: 13.8ms | ActiveRecord: 0.5ms | Allocations: 1647)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:52:10 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-28 22:52:10 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 4.0ms | ActiveRecord: 0.4ms | Allocations: 1641)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 33ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:52:15 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-28 22:52:15 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 3.3ms | ActiveRecord: 0.4ms | Allocations: 1642)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:52:26 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-28 22:52:26 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.5ms | ActiveRecord: 0.4ms | Allocations: 1645)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:19:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+ [1m[36mUser Update All (167.7ms)[0m [1m[33mUPDATE "users" SET "picture" = ?[0m [["picture", "https://joeschmoe.io/api/v1/random"]]
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 22:56:55 -0300
+ [1m[35m (0.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 547ms (Views: 0.5ms | ActiveRecord: 1.8ms | Allocations: 10469)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 22:56:58 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 26ms (Views: 14.4ms | ActiveRecord: 1.5ms | Allocations: 10524)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 23:00:31 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"laila@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"laila@mail.com", "picture"=>""}}
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Create (1.8ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Bob"], ["email", "laila@mail.com"], ["password_digest", "$2a$12$xlgt7OwzVISW3PaXHvzN0.H98dsbcIJZ.ymtUp0lxwBnPGHgVXq2O"], ["created_at", "2020-04-29 02:00:32.423887"], ["updated_at", "2020-04-29 02:00:32.423887"], ["picture", "https://joeschmoe.io/api/v1/random"]]
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[35m (95.5ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "laila@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "laila@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 201 Created in 979ms (Views: 0.2ms | ActiveRecord: 99.0ms | Allocations: 8895)
+
+
+Started GET "/users/null" for 127.0.0.1 at 2020-04-28 23:01:35 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"null"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 5], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", nil], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 404 Not Found in 9ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 1505)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 23:01:42 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"laila@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"laila@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "laila@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "laila@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "laila@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 483ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1973)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 23:01:45 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 5], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.6ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 42ms (Views: 15.3ms | ActiveRecord: 19.4ms | Allocations: 10268)
+
+
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 23:03:20 -0300
+Started GET "/users/null" for 127.0.0.1 at 2020-04-28 23:03:20 -0300
+ [1m[35m (14.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (12.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by MeetsController#index as */*
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"null"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 5], ["LIMIT", 1]]
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 5], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", nil], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 404 Not Found in 104ms (Views: 0.2ms | ActiveRecord: 1.6ms | Allocations: 11979)
+
+
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 154ms (Views: 33.9ms | ActiveRecord: 1.8ms | Allocations: 22949)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 23:05:25 -0300
+Started GET "/users/null" for 127.0.0.1 at 2020-04-28 23:05:25 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (1.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 5], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 41ms (Views: 11.4ms | ActiveRecord: 1.6ms | Allocations: 1661)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"null"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 5], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", nil], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 404 Not Found in 7ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 1258)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 23:06:24 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"depak@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"123abc", "picture"=>"https://joeschmoe.io/api/v1/random", "user"=>{"name"=>"123abc", "email"=>"depak@mail.com", "picture"=>"https://joeschmoe.io/api/v1/random"}}
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Create (5.0ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "123abc"], ["email", "depak@mail.com"], ["password_digest", "$2a$12$UTIJX8E2FgscKedXMLY0SOleMch/tEABfXr.pfbi5q0y0ERKCmphm"], ["created_at", "2020-04-29 02:06:25.149853"], ["updated_at", "2020-04-29 02:06:25.149853"], ["picture", "https://joeschmoe.io/api/v1/random"]]
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[35m (122.5ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "depak@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "depak@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 201 Created in 872ms (Views: 0.2ms | ActiveRecord: 128.0ms | Allocations: 4305)
+
+
+Started GET "/users/null" for 127.0.0.1 at 2020-04-28 23:06:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"null"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 6], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", nil], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 404 Not Found in 14ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 1243)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 23:06:40 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"depak@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"depak@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "depak@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "depak@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "depak@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 499ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1974)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 23:06:43 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 6], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 17ms (Views: 4.0ms | ActiveRecord: 0.5ms | Allocations: 1637)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 23:07:52 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"mona@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Mona", "picture"=>"https://joeschmoe.io/api/v1/random", "user"=>{"name"=>"Mona", "email"=>"mona@mail.com", "picture"=>"https://joeschmoe.io/api/v1/random"}}
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Create (1.5ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mona"], ["email", "mona@mail.com"], ["password_digest", "$2a$12$wsE8TbeVUMJPANwE9CQ3FulBZ1w//Ly7o5fSt6NXoibRQjzybh5z2"], ["created_at", "2020-04-29 02:07:52.698623"], ["updated_at", "2020-04-29 02:07:52.698623"], ["picture", "https://joeschmoe.io/api/v1/random"]]
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[35m (90.1ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "mona@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "mona@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 201 Created in 824ms (Views: 0.2ms | ActiveRecord: 92.1ms | Allocations: 3474)
+
+
+Started GET "/users/null" for 127.0.0.1 at 2020-04-28 23:08:03 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"null"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", nil], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 404 Not Found in 7ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 1243)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 23:08:08 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"mona@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"mona@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "mona@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "mona@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "mona@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 512ms (Views: 0.4ms | ActiveRecord: 0.3ms | Allocations: 1937)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 23:08:11 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 16ms (Views: 4.2ms | ActiveRecord: 0.5ms | Allocations: 1637)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 23:09:07 -0300
+Started GET "/users/null" for 127.0.0.1 at 2020-04-28 23:09:07 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 4.5ms | ActiveRecord: 0.6ms | Allocations: 1644)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"null"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", nil], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 404 Not Found in 9ms (Views: 0.3ms | ActiveRecord: 0.6ms | Allocations: 1243)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-28 23:10:15 -0300
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"leo@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Leo", "picture"=>"https://joeschmoe.io/api/v1/random", "user"=>{"name"=>"Leo", "email"=>"leo@mail.com", "picture"=>"https://joeschmoe.io/api/v1/random"}}
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Create (1.6ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Leo"], ["email", "leo@mail.com"], ["password_digest", "$2a$12$1a0L5b/jE3TAOKDcZET0JOmh09IBXa4wLZwS6BqUWfNalTkD5dVf2"], ["created_at", "2020-04-29 02:10:16.491320"], ["updated_at", "2020-04-29 02:10:16.491320"], ["picture", "https://joeschmoe.io/api/v1/random"]]
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[35m (96.4ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "leo@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "leo@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 201 Created in 849ms (Views: 0.8ms | ActiveRecord: 100.4ms | Allocations: 8863)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 23:10:19 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 29ms (Views: 15.0ms | ActiveRecord: 1.6ms | Allocations: 10523)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-28 23:10:26 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 3.4ms | ActiveRecord: 0.5ms | Allocations: 1747)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-28 23:10:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.9ms | Allocations: 1401)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 21:12:30 -0300
+ [1m[35m (13.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by UserMeetsController#index as HTML
+Completed 422 Unprocessable Entity in 58ms (Views: 12.4ms | ActiveRecord: 0.0ms | Allocations: 586)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 21:12:50 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UserMeetsController#index as HTML
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 127ms (Views: 51.3ms | ActiveRecord: 1.6ms | Allocations: 11100)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 21:13:19 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UserMeetsController#index as HTML
+ [1m[36mUserMeet Load (0.5ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 75ms (Views: 6.9ms | ActiveRecord: 1.5ms | Allocations: 2515)
+
+
+ [1m[35m (4.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (56.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets" LIMIT ?[0m [["LIMIT", 11]]
+Started GET "/user_" for 127.0.0.1 at 2020-04-29 21:25:43 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+
+ActionController::RoutingError (No route matches [GET] "/user_"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/favicon.ico" for 127.0.0.1 at 2020-04-29 21:25:44 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:26:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 55ms (Views: 0.5ms | ActiveRecord: 1.6ms | Allocations: 10851)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-29 21:26:19 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 21ms (Views: 12.5ms | ActiveRecord: 1.4ms | Allocations: 10267)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:26:25 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.6ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 268ms (Views: 101.3ms | ActiveRecord: 2.5ms | Allocations: 14502)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:28:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 14ms (Views: 1.7ms | ActiveRecord: 1.0ms | Allocations: 1408)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:29:01 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 3.4ms | ActiveRecord: 1.0ms | Allocations: 3234)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:29:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:29:30 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 15ms (Views: 5.7ms | ActiveRecord: 1.1ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:29:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:29:56 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 17ms (Views: 4.5ms | ActiveRecord: 1.2ms | Allocations: 3221)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:30:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:30:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 4.9ms | ActiveRecord: 1.0ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:30:55 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:30:57 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 12ms (Views: 3.3ms | ActiveRecord: 0.9ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:31:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:31:31 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 3.6ms | ActiveRecord: 1.2ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:32:58 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 1.1ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:33:01 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 28ms (Views: 18.7ms | ActiveRecord: 1.0ms | Allocations: 3222)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:33:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1402)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:33:32 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 5.0ms | ActiveRecord: 0.9ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:34:30 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (1.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 1.5ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:34:32 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 15ms (Views: 3.4ms | ActiveRecord: 1.0ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:35:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:35:06 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 4.2ms | ActiveRecord: 1.1ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:37:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:37:14 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 3.7ms | ActiveRecord: 1.1ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:44:56 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:44:59 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.4ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 16ms (Views: 4.7ms | ActiveRecord: 1.3ms | Allocations: 3270)
+
+
+Started POST "/user_meets/" for 127.0.0.1 at 2020-04-29 21:45:08 -0300
+Processing by UserMeetsController#create as */*
+ Parameters: {"user_id"=>"8", "meet_id"=>"2", "user_meet"=>{"user_id"=>"8", "meet_id"=>"2"}}
+[31mUnpermitted parameter: :user_meet[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mUserMeet Create (24.3ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 8], ["meet_id", 2]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[35m (90.6ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+Completed 201 Created in 136ms (Views: 0.4ms | ActiveRecord: 115.9ms | Allocations: 6667)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 21:45:22 -0300
+Processing by UserMeetsController#index as HTML
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms | Allocations: 857)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:46:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:46:31 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 16ms (Views: 4.5ms | ActiveRecord: 1.0ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:47:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:47:13 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 12ms (Views: 4.2ms | ActiveRecord: 1.0ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:47:45 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 10ms (Views: 2.0ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:47:48 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 16ms (Views: 3.4ms | ActiveRecord: 1.5ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:48:25 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:48:28 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 16ms (Views: 4.3ms | ActiveRecord: 1.2ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:48:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:48:59 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.4ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 12ms (Views: 4.5ms | ActiveRecord: 1.0ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:49:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:49:09 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 15ms (Views: 5.1ms | ActiveRecord: 0.9ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:50:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 21:50:24 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 3.9ms | ActiveRecord: 1.0ms | Allocations: 3220)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:56:47 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1423)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 21:56:49 -0300
+Processing by UserMeetsController#index as */*
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.3ms | Allocations: 845)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:58:04 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 21:58:06 -0300
+Processing by UserMeetsController#index as */*
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.2ms | Allocations: 833)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:58:28 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 21:58:30 -0300
+Processing by UserMeetsController#index as */*
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.2ms | Allocations: 833)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:58:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 21:58:52 -0300
+Processing by UserMeetsController#index as */*
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.2ms | Allocations: 833)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:59:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 21:59:12 -0300
+Processing by UserMeetsController#index as */*
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.3ms | Allocations: 833)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:59:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1401)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 21:59:29 -0300
+Processing by UserMeetsController#index as */*
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.2ms | Allocations: 833)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 21:59:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 21:59:55 -0300
+Processing by UserMeetsController#index as */*
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.2ms | Allocations: 833)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:00:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 22:00:11 -0300
+Processing by UserMeetsController#index as */*
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.2ms | Allocations: 833)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:00:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 22:00:20 -0300
+Processing by UserMeetsController#index as */*
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.3ms | Allocations: 833)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:01:31 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 40ms (Views: 0.6ms | ActiveRecord: 1.8ms | Allocations: 9963)
+
+
+Started GET "/user_meets" for 127.0.0.1 at 2020-04-29 22:01:33 -0300
+Processing by UserMeetsController#index as */*
+ [1m[36mUserMeet Load (0.6ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 15ms (Views: 8.7ms | ActiveRecord: 1.6ms | Allocations: 3403)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:02:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 1401)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:05:32 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 54ms (Views: 1.0ms | ActiveRecord: 1.8ms | Allocations: 9962)
+
+
+Started GET "/user_meets/8/" for 127.0.0.1 at 2020-04-29 22:05:35 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"id"=>"8"}
+Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 132)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:05:53 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1401)
+
+
+Started GET "/user_meets/8/" for 127.0.0.1 at 2020-04-29 22:05:55 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"id"=>"8"}
+Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 111)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:06:12 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/user_meets/8/" for 127.0.0.1 at 2020-04-29 22:06:14 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"id"=>"8"}
+Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 111)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:07:10 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 23ms (Views: 0.5ms | ActiveRecord: 1.6ms | Allocations: 9929)
+
+
+Started GET "/user_meets/8/" for 127.0.0.1 at 2020-04-29 22:07:12 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"id"=>"8"}
+Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 132)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:07:28 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 24ms (Views: 0.8ms | ActiveRecord: 1.5ms | Allocations: 9928)
+
+
+Started GET "/user_meets/8/" for 127.0.0.1 at 2020-04-29 22:07:31 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"id"=>"8"}
+Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 132)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:08:01 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 41ms (Views: 0.8ms | ActiveRecord: 2.6ms | Allocations: 9963)
+
+
+Started GET "/user_meets/8/" for 127.0.0.1 at 2020-04-29 22:08:04 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"id"=>"8"}
+Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 145)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:09:19 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 31ms (Views: 1.1ms | ActiveRecord: 1.8ms | Allocations: 9927)
+
+
+Started GET "/user_meets/8/" for 127.0.0.1 at 2020-04-29 22:09:21 -0300
+
+ActionController::RoutingError (No route matches [GET] "/user_meets/8"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:10:32 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 41ms (Views: 1.0ms | ActiveRecord: 1.9ms | Allocations: 9928)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:10:35 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE (8) LIMIT ?[0m [["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:16:in `show'
+Completed 500 Internal Server Error in 33ms (ActiveRecord: 1.4ms | Allocations: 4757)
+
+
+
+NoMethodError (undefined method `to_a' for #
+Did you mean? to_s):
+
+app/controllers/user_meets_controller.rb:20:in `show'
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:12:46 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 71ms (Views: 0.7ms | ActiveRecord: 5.2ms | Allocations: 9963)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:12:48 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+Completed 500 Internal Server Error in 111ms (ActiveRecord: 0.0ms | Allocations: 41143)
+
+
+
+NoMethodError (undefined method `_all_by' for #):
+
+app/controllers/user_meets_controller.rb:15:in `show'
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:13:06 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 30ms (Views: 0.9ms | ActiveRecord: 1.9ms | Allocations: 9979)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:13:08 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms | Allocations: 3338)
+
+
+
+NoMethodError (undefined method `find_all_by' for UserMeet(id: integer, user_id: integer, meet_id: integer):Class
+Did you mean? find_by):
+
+app/controllers/user_meets_controller.rb:15:in `show'
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:13:43 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 33ms (Views: 0.6ms | ActiveRecord: 2.3ms | Allocations: 9927)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:13:46 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms | Allocations: 3294)
+
+
+
+NoMethodError (undefined method `find_all_by_user_id' for UserMeet(id: integer, user_id: integer, meet_id: integer):Class
+Did you mean? find_by_sql):
+
+app/controllers/user_meets_controller.rb:15:in `show'
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:14:54 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 29ms (Views: 0.6ms | ActiveRecord: 1.8ms | Allocations: 9963)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:14:56 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? LIMIT ?[0m [["user_id", 8], ["LIMIT", 11]]
+ ↳ app/controllers/user_meets_controller.rb:16:in `p'
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `show'
+Completed 200 OK in 18ms (Views: 0.2ms | ActiveRecord: 1.9ms | Allocations: 3919)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:15:44 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 37ms (Views: 1.3ms | ActiveRecord: 2.2ms | Allocations: 9927)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:15:47 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+Completed 200 OK in 17ms (Views: 0.2ms | ActiveRecord: 1.8ms | Allocations: 3267)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:16:34 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 33ms (Views: 1.0ms | ActiveRecord: 1.9ms | Allocations: 9927)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:16:37 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+Completed 200 OK in 28ms (Views: 0.2ms | ActiveRecord: 14.0ms | Allocations: 3302)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:17:07 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 30ms (Views: 0.6ms | ActiveRecord: 2.4ms | Allocations: 9930)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:17:09 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+Completed 200 OK in 16ms (Views: 0.2ms | ActiveRecord: 2.2ms | Allocations: 3274)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:17:35 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 29ms (Views: 0.6ms | ActiveRecord: 1.8ms | Allocations: 9927)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:17:38 -0300
+
+SyntaxError (C:/Users/Usuario/reactProjects/findYourHouse/api/app/controllers/user_meets_controller.rb:18: syntax error, unexpected do, expecting end
+ @user_meet do |n|
+ ^~
+C:/Users/Usuario/reactProjects/findYourHouse/api/app/controllers/user_meets_controller.rb:28: syntax error, unexpected do, expecting end
+ @user_meet do |n|
+ ^~
+C:/Users/Usuario/reactProjects/findYourHouse/api/app/controllers/user_meets_controller.rb:34: syntax error, unexpected end, expecting end-of-input
+ end
+ ^~~):
+
+app/controllers/user_meets_controller.rb:18: syntax error, unexpected do, expecting end
+app/controllers/user_meets_controller.rb:28: syntax error, unexpected do, expecting end
+app/controllers/user_meets_controller.rb:34: syntax error, unexpected end, expecting end-of-input
+app/controllers/user_meets_controller.rb:18: syntax error, unexpected do, expecting end
+app/controllers/user_meets_controller.rb:28: syntax error, unexpected do, expecting end
+app/controllers/user_meets_controller.rb:34: syntax error, unexpected end, expecting end-of-input
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:18:13 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 42ms (Views: 1.7ms | ActiveRecord: 2.2ms | Allocations: 9963)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:18:15 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 37ms (Views: 0.9ms | ActiveRecord: 3.2ms | Allocations: 12699)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:22:30 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 40ms (Views: 1.5ms | ActiveRecord: 1.9ms | Allocations: 9927)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:22:32 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 39ms (Views: 0.9ms | ActiveRecord: 3.3ms | Allocations: 12664)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:23:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:23:04 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:23:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:23:21 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.8ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 1.0ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:23:38 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 1.2ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:23:40 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:42:13 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:42:16 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.6ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.9ms | Allocations: 1458)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:43:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:43:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:43:41 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 16ms (Views: 1.2ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:44:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:44:51 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:45:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:45:12 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 13ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:45:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 22ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:45:20 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (1.0ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 29ms (Views: 1.8ms | ActiveRecord: 1.2ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:52:33 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1423)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:52:35 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.5ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 1.0ms | Allocations: 1458)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:53:02 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:53:04 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-29 22:53:50 -0300
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:53:50 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 17ms (Views: 12.8ms | ActiveRecord: 0.6ms | Allocations: 1723)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-29 22:53:53 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.5ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 37ms (Views: 19.1ms | ActiveRecord: 2.5ms | Allocations: 10717)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:54:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:54:18 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 16ms (Views: 1.2ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:55:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:55:16 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.5ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:56:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:56:11 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1420)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:56:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 17ms (Views: 1.2ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:56:18 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:57:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:57:02 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:57:07 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.8ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:57:09 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 22:59:48 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 22:59:50 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:02:32 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 23:02:34 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:02:54 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 23:02:56 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:03:27 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 23:03:29 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:05:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 23:05:35 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.5ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.8ms | Allocations: 1419)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-29 23:05:44 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.7ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 12ms (Views: 7.7ms | ActiveRecord: 1.0ms | Allocations: 1637)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 23:05:45 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 6ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:06:16 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 23:06:18 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:08:56 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.7ms | Allocations: 1401)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:09:00 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 23:09:02 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.4ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:09:21 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 23:09:24 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.7ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:09:31 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 23:09:33 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:09:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/user_meets/meets/8/" for 127.0.0.1 at 2020-04-29 23:09:41 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"8"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 8]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 14ms (Views: 7.5ms | ActiveRecord: 0.5ms | Allocations: 1419)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:13:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 201)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:13:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 200)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:13:57 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 200)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:14:39 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 200)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-29 23:15:16 -0300
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:15:16 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 196)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 200)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-29 23:51:57 -0300
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:51:58 -0300
+ [1m[35m (15.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (3.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 101ms (Views: 19.5ms | ActiveRecord: 0.0ms | Allocations: 748)
+
+
+Completed 422 Unprocessable Entity in 75ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 745)
+
+
+Started GET "/users/8" for 127.0.0.1 at 2020-04-29 23:52:10 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"8"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 200)
+
+
+Started GET "/" for ::1 at 2020-04-30 12:42:18 -0300
+ [1m[35m (39.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by Rails::WelcomeController#index as HTML
+ Rendering C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/railties-6.0.2.2/lib/rails/templates/rails/welcome/index.html.erb
+ Rendered C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/railties-6.0.2.2/lib/rails/templates/rails/welcome/index.html.erb (Duration: 190.3ms | Allocations: 416)
+Completed 200 OK in 403ms (Views: 320.3ms | ActiveRecord: 0.0ms | Allocations: 2226)
+
+
+Started GET "/favicon.ico" for ::1 at 2020-04-30 12:42:20 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-30 12:45:30 -0300
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (15.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 703ms (Views: 0.5ms | ActiveRecord: 16.3ms | Allocations: 12016)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 12:45:33 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 385)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 12:46:13 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 119)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-30 12:46:20 -0300
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 502ms (Views: 1.6ms | ActiveRecord: 0.3ms | Allocations: 1953)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 12:46:23 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 32ms (Views: 13.4ms | ActiveRecord: 1.6ms | Allocations: 10772)
+
+
+Started GET "/user_meets/meets/4/" for 127.0.0.1 at 2020-04-30 12:47:04 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"4"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 4]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+Completed 200 OK in 47ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 2169)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 12:47:12 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 3.5ms | ActiveRecord: 0.6ms | Allocations: 1654)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-30 12:47:15 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.5ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 277ms (Views: 146.1ms | ActiveRecord: 3.0ms | Allocations: 14520)
+
+
+Started POST "/user_meets/" for 127.0.0.1 at 2020-04-30 12:47:18 -0300
+Processing by UserMeetsController#create as */*
+ Parameters: {"user_id"=>"4", "meet_id"=>"2", "user_meet"=>{"user_id"=>"4", "meet_id"=>"2"}}
+[31mUnpermitted parameter: :user_meet[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mUserMeet Create (66.7ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 4], ["meet_id", 2]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[35m (100.5ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+Completed 201 Created in 204ms (Views: 0.9ms | ActiveRecord: 168.3ms | Allocations: 6587)
+
+
+Started GET "/user_meets/meets/4/" for 127.0.0.1 at 2020-04-30 12:47:28 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"4"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 4]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 20ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1427)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 12:47:36 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 2.7ms | ActiveRecord: 0.6ms | Allocations: 1637)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 12:49:36 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 12:49:36 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 3.2ms | ActiveRecord: 0.4ms | Allocations: 1642)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1435)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-30 12:49:42 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 3.4ms | ActiveRecord: 0.9ms | Allocations: 3220)
+
+
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 12:50:50 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-30 12:50:52 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 3.8ms | ActiveRecord: 0.8ms | Allocations: 3220)
+
+
+Started POST "/user_meets/" for 127.0.0.1 at 2020-04-30 12:50:55 -0300
+Processing by UserMeetsController#create as */*
+ Parameters: {"user_id"=>"4", "meet_id"=>"2", "user_meet"=>{"user_id"=>"4", "meet_id"=>"2"}}
+[31mUnpermitted parameter: :user_meet[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mUserMeet Create (9.0ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 4], ["meet_id", 2]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[35m (89.2ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+Completed 201 Created in 120ms (Views: 0.6ms | ActiveRecord: 98.6ms | Allocations: 4284)
+
+
+Started GET "/user_meets/meets/4/" for 127.0.0.1 at 2020-04-30 12:50:58 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"4"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 4]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+ [1m[36mCACHE Meet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.6ms | Allocations: 2075)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 12:51:02 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 6ms (Views: 2.6ms | ActiveRecord: 0.5ms | Allocations: 1637)
+
+
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 12:54:09 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 14ms (Views: 1.8ms | ActiveRecord: 1.1ms | Allocations: 1401)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 12:54:11 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 8ms (Views: 5.0ms | ActiveRecord: 0.5ms | Allocations: 1637)
+
+
+ [1m[35m (4.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Create (1.4ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Sarah"], ["email", "sarah@mail.com"], ["password_digest", "$2a$12$GZ/U0PxVuHsgHokdHa0s4.mnTcsw8wckviC/GQdQ7r1XBNS1Hqiv."], ["created_at", "2020-04-30 16:05:55.824411"], ["updated_at", "2020-04-30 16:05:55.824411"]]
+ [1m[35m (129.2ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Create (65.5ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Jo"], ["email", "jo@mail.com"], ["password_digest", "$2a$12$EIUzlrIqus43IqtJ.bRFdehjWGYcCu0qYNCNzkBbIIONR2BUpHM2q"], ["created_at", "2020-04-30 16:05:56.244424"], ["updated_at", "2020-04-30 16:05:56.244424"]]
+ [1m[35m (141.8ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "First meeting"], ["description", "Lorem ipsum sum don, fem teinho,m de lacarael."], ["created_at", "2020-04-30 16:05:56.692500"], ["updated_at", "2020-04-30 16:05:56.692500"]]
+ [1m[36mUserMeet Create (0.4ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 3]]
+ [1m[35m (121.4ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Support meeting - 0"], ["description", "This is a meeting for the members unnable to leave..."], ["frequency", "weekly"], ["duration", 1.5], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-30 16:05:56.833805"], ["updated_at", "2020-04-30 16:05:56.833805"]]
+ [1m[36mUserMeet Create (0.4ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 4]]
+ [1m[35m (78.2ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (1.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Next meeting"], ["description", "..."], ["date", "-4712-01-11 00:00:00"], ["confirmed_members", "0"], ["meet_id", 4], ["link", "https://microverse.zoom.us/j/76632873333"], ["created_at", "2020-04-30 16:05:56.939410"], ["updated_at", "2020-04-30 16:05:56.939410"]]
+ [1m[35m (86.3ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (2.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Support meeting - 1"], ["description", "This is a meeting for the members unnable to leave..."], ["frequency", "weekly"], ["duration", 1.5], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-30 16:05:57.033294"], ["updated_at", "2020-04-30 16:05:57.033294"]]
+ [1m[36mUserMeet Create (0.5ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 5]]
+ [1m[35m (83.1ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (1.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Next meeting"], ["description", "..."], ["date", "-4712-01-11 00:00:00"], ["confirmed_members", "0"], ["meet_id", 5], ["link", "https://microverse.zoom.us/j/76632873333"], ["created_at", "2020-04-30 16:05:57.132853"], ["updated_at", "2020-04-30 16:05:57.132853"]]
+ [1m[35m (89.6ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (2.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Support meeting - 2"], ["description", "This is a meeting for the members unnable to leave..."], ["frequency", "weekly"], ["duration", 1.5], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-30 16:05:57.230188"], ["updated_at", "2020-04-30 16:05:57.230188"]]
+ [1m[36mUserMeet Create (0.7ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 6]]
+ [1m[35m (100.7ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (8.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Next meeting"], ["description", "..."], ["date", "-4712-01-11 00:00:00"], ["confirmed_members", "0"], ["meet_id", 6], ["link", "https://microverse.zoom.us/j/76632873333"], ["created_at", "2020-04-30 16:05:57.348634"], ["updated_at", "2020-04-30 16:05:57.348634"]]
+ [1m[35m (221.4ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (2.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Support meeting - 3"], ["description", "This is a meeting for the members unnable to leave..."], ["frequency", "weekly"], ["duration", 1.5], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-30 16:05:57.588980"], ["updated_at", "2020-04-30 16:05:57.588980"]]
+ [1m[36mUserMeet Create (0.7ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 7]]
+ [1m[35m (223.6ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (2.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Next meeting"], ["description", "..."], ["date", "-4712-01-11 00:00:00"], ["confirmed_members", "0"], ["meet_id", 7], ["link", "https://microverse.zoom.us/j/76632873333"], ["created_at", "2020-04-30 16:05:57.831357"], ["updated_at", "2020-04-30 16:05:57.831357"]]
+ [1m[35m (442.2ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (2.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Support meeting - 4"], ["description", "This is a meeting for the members unnable to leave..."], ["frequency", "weekly"], ["duration", 1.5], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-30 16:05:58.287032"], ["updated_at", "2020-04-30 16:05:58.287032"]]
+ [1m[36mUserMeet Create (0.6ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 8]]
+ [1m[35m (79.7ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (3.0ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Next meeting"], ["description", "..."], ["date", "-4712-01-11 00:00:00"], ["confirmed_members", "0"], ["meet_id", 8], ["link", "https://microverse.zoom.us/j/76632873333"], ["created_at", "2020-04-30 16:05:58.384989"], ["updated_at", "2020-04-30 16:05:58.384989"]]
+ [1m[35m (87.4ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (2.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Support meeting - 5"], ["description", "This is a meeting for the members unnable to leave..."], ["frequency", "weekly"], ["duration", 1.5], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-30 16:05:58.485884"], ["updated_at", "2020-04-30 16:05:58.485884"]]
+ [1m[36mUserMeet Create (0.8ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 9]]
+ [1m[35m (88.8ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (2.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Next meeting"], ["description", "..."], ["date", "-4712-01-11 00:00:00"], ["confirmed_members", "0"], ["meet_id", 9], ["link", "https://microverse.zoom.us/j/76632873333"], ["created_at", "2020-04-30 16:05:58.592532"], ["updated_at", "2020-04-30 16:05:58.592532"]]
+ [1m[35m (102.4ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Support meeting - 6"], ["description", "This is a meeting for the members unnable to leave..."], ["frequency", "weekly"], ["duration", 1.5], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-30 16:05:58.731063"], ["updated_at", "2020-04-30 16:05:58.731063"]]
+ [1m[36mUserMeet Create (0.4ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 10]]
+ [1m[35m (117.9ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (2.9ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Next meeting"], ["description", "..."], ["date", "-4712-01-11 00:00:00"], ["confirmed_members", "0"], ["meet_id", 10], ["link", "https://microverse.zoom.us/j/76632873333"], ["created_at", "2020-04-30 16:05:58.860711"], ["updated_at", "2020-04-30 16:05:58.860711"]]
+ [1m[35m (94.8ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (2.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Support meeting - 7"], ["description", "This is a meeting for the members unnable to leave..."], ["frequency", "weekly"], ["duration", 1.5], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-30 16:05:58.968294"], ["updated_at", "2020-04-30 16:05:58.968294"]]
+ [1m[36mUserMeet Create (0.8ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 11]]
+ [1m[35m (109.7ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (1.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Next meeting"], ["description", "..."], ["date", "-4712-01-11 00:00:00"], ["confirmed_members", "0"], ["meet_id", 11], ["link", "https://microverse.zoom.us/j/76632873333"], ["created_at", "2020-04-30 16:05:59.095974"], ["updated_at", "2020-04-30 16:05:59.095974"]]
+ [1m[35m (102.4ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Support meeting - 8"], ["description", "This is a meeting for the members unnable to leave..."], ["frequency", "weekly"], ["duration", 1.5], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-30 16:05:59.205322"], ["updated_at", "2020-04-30 16:05:59.205322"]]
+ [1m[36mUserMeet Create (0.4ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 12]]
+ [1m[35m (92.1ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (1.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Next meeting"], ["description", "..."], ["date", "-4712-01-11 00:00:00"], ["confirmed_members", "0"], ["meet_id", 12], ["link", "https://microverse.zoom.us/j/76632873333"], ["created_at", "2020-04-30 16:05:59.306564"], ["updated_at", "2020-04-30 16:05:59.306564"]]
+ [1m[35m (83.8ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (1.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Support meeting - 9"], ["description", "This is a meeting for the members unnable to leave..."], ["frequency", "weekly"], ["duration", 1.5], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-30 16:05:59.396709"], ["updated_at", "2020-04-30 16:05:59.396709"]]
+ [1m[36mUserMeet Create (0.3ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 13]]
+ [1m[35m (93.9ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (2.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Next meeting"], ["description", "..."], ["date", "-4712-01-11 00:00:00"], ["confirmed_members", "0"], ["meet_id", 13], ["link", "https://microverse.zoom.us/j/76632873333"], ["created_at", "2020-04-30 16:05:59.499708"], ["updated_at", "2020-04-30 16:05:59.499708"]]
+ [1m[35m (111.3ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (2.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Support meeting - 10"], ["description", "This is a meeting for the members unnable to leave..."], ["frequency", "weekly"], ["duration", 1.5], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-30 16:05:59.623891"], ["updated_at", "2020-04-30 16:05:59.623891"]]
+ [1m[36mUserMeet Create (0.6ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 14]]
+ [1m[35m (106.7ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (2.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Next meeting"], ["description", "..."], ["date", "-4712-01-11 00:00:00"], ["confirmed_members", "0"], ["meet_id", 14], ["link", "https://microverse.zoom.us/j/76632873333"], ["created_at", "2020-04-30 16:05:59.747763"], ["updated_at", "2020-04-30 16:05:59.747763"]]
+ [1m[35m (121.3ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeet Create (2.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Support meeting - 11"], ["description", "This is a meeting for the members unnable to leave..."], ["frequency", "weekly"], ["duration", 1.5], ["day", "Wednesday"], ["members", 20], ["max_members", 24], ["created_at", "2020-04-30 16:05:59.881550"], ["updated_at", "2020-04-30 16:05:59.881550"]]
+ [1m[36mUserMeet Create (0.5ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 9], ["meet_id", 15]]
+ [1m[35m (149.4ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Create (1.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Next meeting"], ["description", "..."], ["date", "-4712-01-11 00:00:00"], ["confirmed_members", "0"], ["meet_id", 15], ["link", "https://microverse.zoom.us/j/76632873333"], ["created_at", "2020-04-30 16:06:00.045015"], ["updated_at", "2020-04-30 16:06:00.045015"]]
+ [1m[35m (143.2ms)[0m [1m[36mcommit transaction[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:06:16 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 13:06:16 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 9.3ms | ActiveRecord: 0.6ms | Allocations: 4552)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+ [1m[35m (4.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."title" = ? LIMIT ?[0m [["title", "First meeting"], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."title" = ? LIMIT ?[0m [["title", "First meeting"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 3]]
+ [1m[36mMeet Destroy (11.4ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 3]]
+ [1m[35m (9.4ms)[0m [1m[31mrollback transaction[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:08:46 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 13:08:46 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 8.3ms | ActiveRecord: 0.5ms | Allocations: 4503)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 11ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:08:54 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 13:08:54 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 7.5ms | ActiveRecord: 0.4ms | Allocations: 4506)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."title" = ? LIMIT ?[0m [["title", "First meeting"], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."title" = ? LIMIT ?[0m [["title", "First meeting"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 3]]
+ [1m[36mMeet Destroy (5.3ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 3]]
+ [1m[35m (7.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."title" = ? LIMIT ?[0m [["title", "First meeting"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 3]]
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ?[0m [["meet_id", 3]]
+ [1m[36mUserMeet Destroy (4.9ms)[0m [1m[31mDELETE FROM "user_meets" WHERE "user_meets"."id" = ?[0m [["id", 4]]
+ [1m[36mMeet Destroy (0.3ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 3]]
+ [1m[35m (122.6ms)[0m [1m[36mcommit transaction[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:12:52 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 13:12:52 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#index as */*
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 77ms (Views: 0.8ms | ActiveRecord: 0.8ms | Allocations: 10662)
+
+
+ [1m[36mMeet Load (0.7ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 133ms (Views: 20.4ms | ActiveRecord: 4.5ms | Allocations: 23290)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:14:47 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 13:14:47 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 45ms (Views: 37.9ms | ActiveRecord: 0.7ms | Allocations: 4297)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 41ms (Views: 1.1ms | ActiveRecord: 0.8ms | Allocations: 1401)
+
+
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 13:26:56 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 47ms (Views: 1.7ms | ActiveRecord: 0.6ms | Allocations: 1423)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:26:58 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 6.8ms | ActiveRecord: 0.7ms | Allocations: 4319)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:27:47 -0300
+Processing by MeetsController#index as */*
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 120)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-30 13:28:30 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"test@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"test", "picture"=>"https://joeschmoe.io/api/v1/random", "user"=>{"name"=>"test", "email"=>"test@mail.com", "picture"=>"https://joeschmoe.io/api/v1/random"}}
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Create (28.0ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "test"], ["email", "test@mail.com"], ["password_digest", "$2a$12$33l1N3gUxcypd3iP/befd.T.vikM3iaM7//0oSV8m2nbMCyw5n2z."], ["created_at", "2020-04-30 16:28:30.937607"], ["updated_at", "2020-04-30 16:28:30.937607"], ["picture", "https://joeschmoe.io/api/v1/random"]]
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[35m (565.7ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "test@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "test@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 201 Created in 1337ms (Views: 1.3ms | ActiveRecord: 594.2ms | Allocations: 4253)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:28:34 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 5.9ms | ActiveRecord: 0.5ms | Allocations: 4290)
+
+
+Started GET "/meets/8" for 127.0.0.1 at 2020-04-30 13:28:48 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+Completed 404 Not Found in 6ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 1415)
+
+
+Started GET "/users/11" for 127.0.0.1 at 2020-04-30 13:29:37 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"11"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/meets/9" for 127.0.0.1 at 2020-04-30 13:29:40 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"9"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 9], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+Completed 404 Not Found in 9ms (Views: 0.3ms | ActiveRecord: 0.8ms | Allocations: 1286)
+
+
+Started GET "/users/11" for 127.0.0.1 at 2020-04-30 13:29:42 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"11"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1402)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-30 13:29:45 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.8ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 28ms (Views: 15.2ms | ActiveRecord: 2.8ms | Allocations: 10715)
+
+
+ [1m[35m (5.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+Started GET "/users/11" for 127.0.0.1 at 2020-04-30 13:30:18 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"11"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/meets/8" for 127.0.0.1 at 2020-04-30 13:30:20 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"8"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+Completed 404 Not Found in 19ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 1288)
+
+
+Started GET "/users/11" for 127.0.0.1 at 2020-04-30 13:30:29 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"11"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/meets/9" for 127.0.0.1 at 2020-04-30 13:30:31 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"9"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 9], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+Completed 404 Not Found in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1286)
+
+
+Started GET "/users/11" for 127.0.0.1 at 2020-04-30 13:30:41 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"11"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/users/11" for 127.0.0.1 at 2020-04-30 13:30:44 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"11"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 1401)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-30 13:30:46 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"2"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 3.5ms | ActiveRecord: 1.0ms | Allocations: 3220)
+
+
+Started GET "/users/11" for 127.0.0.1 at 2020-04-30 13:30:51 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"11"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/meets/3" for 127.0.0.1 at 2020-04-30 13:30:54 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"3"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+Completed 404 Not Found in 5ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 1232)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:31:07 -0300
+Processing by MeetsController#index as HTML
+Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 104)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:31:43 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 24ms (Views: 17.2ms | ActiveRecord: 1.5ms | Allocations: 12755)
+
+
+Started GET "/meets/9" for 127.0.0.1 at 2020-04-30 13:31:59 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"9"}
+Completed 422 Unprocessable Entity in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 490)
+
+
+Started GET "/meets/9" for 127.0.0.1 at 2020-04-30 13:32:09 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"9"}
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 9], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:45:in `set_meet'
+Completed 404 Not Found in 26ms (Views: 0.2ms | ActiveRecord: 2.4ms | Allocations: 13308)
+
+
+Started GET "/meets/2" for 127.0.0.1 at 2020-04-30 13:32:28 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:45:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:19:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 2]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 31ms (Views: 13.4ms | ActiveRecord: 1.8ms | Allocations: 14344)
+
+
+Started GET "/meets/4" for 127.0.0.1 at 2020-04-30 13:32:31 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"4"}
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:45:in `set_meet'
+Completed 404 Not Found in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 660)
+
+
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 9], ["LIMIT", 1]]
+ [1m[36mMeet Update All (138.5ms)[0m [1m[33mUPDATE "meets" SET "created_by" = ?[0m [["created_by", "4"]]
+Started GET "/users/11" for 127.0.0.1 at 2020-04-30 13:35:26 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"11"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Allocations: 1666)
+
+
+Started GET "/meets/3" for 127.0.0.1 at 2020-04-30 13:35:28 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"3"}
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:45:in `set_meet'
+Completed 404 Not Found in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 608)
+
+
+Started GET "/users/11" for 127.0.0.1 at 2020-04-30 13:35:33 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"11"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/meets/4" for 127.0.0.1 at 2020-04-30 13:35:35 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:45:in `set_meet'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:19:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 4]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 21ms (Views: 16.2ms | ActiveRecord: 0.7ms | Allocations: 2653)
+
+
+Started GET "/users/11" for 127.0.0.1 at 2020-04-30 13:35:40 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"11"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/meets/9" for 127.0.0.1 at 2020-04-30 13:35:43 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"9"}
+ [1m[36mMeet Load (0.6ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 9], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:45:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:19:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 9]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 17ms (Views: 11.1ms | ActiveRecord: 1.0ms | Allocations: 2633)
+
+
+Started GET "/users/11" for 127.0.0.1 at 2020-04-30 13:36:38 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"11"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 27ms (Views: 0.7ms | ActiveRecord: 1.6ms | Allocations: 10033)
+
+
+Started GET "/meets/9" for 127.0.0.1 at 2020-04-30 13:36:40 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"9"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 11], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 9], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 9]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 40ms (Views: 13.1ms | ActiveRecord: 3.4ms | Allocations: 19316)
+
+
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-30 13:37:49 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"user@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"user", "picture"=>"https://joeschmoe.io/api/v1/random", "user"=>{"name"=>"user", "email"=>"user@mail.com", "picture"=>"https://joeschmoe.io/api/v1/random"}}
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Create (1.4ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "user"], ["email", "user@mail.com"], ["password_digest", "$2a$12$FRWNgfbOuWfcbxuOgH5/geIc5zajtGrTvf6TrIfRCgDYnOXCgS7eq"], ["created_at", "2020-04-30 16:37:49.889949"], ["updated_at", "2020-04-30 16:37:49.889949"], ["picture", "https://joeschmoe.io/api/v1/random"]]
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[35m (95.5ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "user@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "user@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 201 Created in 930ms (Views: 0.8ms | ActiveRecord: 97.8ms | Allocations: 4196)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:37:52 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 8.4ms | ActiveRecord: 0.5ms | Allocations: 4402)
+
+
+Started GET "/meets/7" for 127.0.0.1 at 2020-04-30 13:38:08 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"7"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 7]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 12ms (Views: 4.6ms | ActiveRecord: 0.9ms | Allocations: 3256)
+
+
+Started POST "/user_meets/" for 127.0.0.1 at 2020-04-30 13:38:18 -0300
+Processing by UserMeetsController#create as */*
+ Parameters: {"user_id"=>"12", "meet_id"=>"7", "user_meet"=>{"user_id"=>"12", "meet_id"=>"7"}}
+[31mUnpermitted parameter: :user_meet[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mUserMeet Create (107.9ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 12], ["meet_id", 7]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[35m (70.6ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+Completed 201 Created in 210ms (Views: 0.6ms | ActiveRecord: 180.0ms | Allocations: 6440)
+
+
+Started GET "/user_meets/meets/12/" for 127.0.0.1 at 2020-04-30 13:38:21 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"12"}
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 12]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1443)
+
+
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUserMeet Load (0.1ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 12]]
+ [1m[36mUserMeet Destroy (5.3ms)[0m [1m[31mDELETE FROM "user_meets" WHERE "user_meets"."id" = ?[0m [["id", 17]]
+ [1m[36mUserMeeting Load (0.2ms)[0m [1m[34mSELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."user_id" = ?[0m [["user_id", 12]]
+ [1m[36mUser Destroy (0.5ms)[0m [1m[31mDELETE FROM "users" WHERE "users"."id" = ?[0m [["id", 12]]
+ [1m[35m (131.6ms)[0m [1m[36mcommit transaction[0m
+Started POST "/auth/signup" for 127.0.0.1 at 2020-04-30 13:39:30 -0300
+Processing by UsersController#create as */*
+ Parameters: {"email"=>"user@mail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"user", "picture"=>"https://joeschmoe.io/api/v1/random", "user"=>{"name"=>"user", "email"=>"user@mail.com", "picture"=>"https://joeschmoe.io/api/v1/random"}}
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Create (30.4ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "user"], ["email", "user@mail.com"], ["password_digest", "$2a$12$xYXhftYOboT/duX4vL39h.KIJDXcmHQtO7D62.QSIjXUe4zK/p3Pa"], ["created_at", "2020-04-30 16:39:30.474936"], ["updated_at", "2020-04-30 16:39:30.474936"], ["picture", "https://joeschmoe.io/api/v1/random"]]
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[35m (640.7ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/users_controller.rb:8:in `create'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "user@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "user@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+Completed 201 Created in 1416ms (Views: 0.6ms | ActiveRecord: 671.5ms | Allocations: 3611)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:39:33 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.8ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 14ms (Views: 8.5ms | ActiveRecord: 1.1ms | Allocations: 4374)
+
+
+Started GET "/meets/7" for 127.0.0.1 at 2020-04-30 13:39:51 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"7"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 7]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 9ms (Views: 3.2ms | ActiveRecord: 0.8ms | Allocations: 3256)
+
+
+Started POST "/user_meets/" for 127.0.0.1 at 2020-04-30 13:40:07 -0300
+Processing by UserMeetsController#create as */*
+ Parameters: {"user_id"=>"12", "meet_id"=>"7", "user_meet"=>{"user_id"=>"12", "meet_id"=>"7"}}
+[31mUnpermitted parameter: :user_meet[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[36mUserMeet Create (1.4ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 12], ["meet_id", 7]]
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+ [1m[35m (1187.6ms)[0m [1m[36mcommit transaction[0m
+ ↳ app/controllers/user_meets_controller.rb:9:in `create'
+Completed 201 Created in 1204ms (Views: 0.2ms | ActiveRecord: 1189.4ms | Allocations: 4286)
+
+
+Started GET "/user_meets/meets/12/" for 127.0.0.1 at 2020-04-30 13:40:10 -0300
+Processing by UserMeetsController#show as */*
+ Parameters: {"user_id"=>"12"}
+ [1m[36mUserMeet Load (0.2ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ?[0m [["user_id", 12]]
+ ↳ app/controllers/user_meets_controller.rb:18:in `show'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
+ ↳ app/controllers/user_meets_controller.rb:19:in `block in show'
+Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1419)
+
+
+Started GET "/meets/7" for 127.0.0.1 at 2020-04-30 13:40:17 -0300
+Processing by MeetsController#show as */*
+ Parameters: {"id"=>"7"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:44:in `set_meet'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/meets_controller.rb:18:in `show'
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 7]]
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 3.7ms | ActiveRecord: 1.1ms | Allocations: 3256)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 13:40:21 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.6ms | Allocations: 4374)
+
+
+Started POST "/auth/login" for 127.0.0.1 at 2020-04-30 16:38:06 -0300
+ [1m[35m (0.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by AuthenticationController#authenticate as */*
+ Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}}
+[31mUnpermitted parameter: :authentication[0m
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/auth/authenticate_user.rb:18:in `user'
+[31mUnpermitted parameter: :authentication[0m
+ [1m[36mCACHE User Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "anon@mail.com"], ["LIMIT", 1]]
+ ↳ app/controllers/authentication_controller.rb:8:in `authenticate'
+Completed 200 OK in 783ms (Views: 0.7ms | ActiveRecord: 0.5ms | Allocations: 10119)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 16:38:10 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.6ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 79ms (Views: 67.2ms | ActiveRecord: 1.0ms | Allocations: 12831)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 16:39:24 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 22ms (Views: 8.0ms | ActiveRecord: 0.9ms | Allocations: 4381)
+
+
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 16:39:24 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.6ms | Allocations: 1438)
+
+
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 16:55:04 -0300
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 16:55:04 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (9.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 50ms (Views: 0.7ms | ActiveRecord: 9.6ms | Allocations: 10305)
+
+
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 95ms (Views: 31.6ms | ActiveRecord: 0.8ms | Allocations: 22510)
+
+
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 16:55:14 -0300
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 16:55:14 -0300
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1408)
+
+
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 6.4ms | ActiveRecord: 0.4ms | Allocations: 4374)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 16:55:21 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 16:55:21 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 10ms (Views: 7.5ms | ActiveRecord: 0.4ms | Allocations: 4381)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1401)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 16:55:30 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 16:55:30 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 13ms (Views: 8.9ms | ActiveRecord: 0.4ms | Allocations: 4381)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 16:55:38 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 16:55:38 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 50ms (Views: 45.1ms | ActiveRecord: 0.6ms | Allocations: 4388)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 40ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 1401)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 16:55:47 -0300
+Started GET "/users/4" for 127.0.0.1 at 2020-04-30 16:55:47 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 26ms (Views: 21.5ms | ActiveRecord: 0.5ms | Allocations: 4390)
+
+
+Processing by UsersController#show as */*
+ Parameters: {"id"=>"4"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/controllers/users_controller.rb:21:in `show'
+Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 1401)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-04-30 16:55:53 -0300
+Processing by MeetsController#index as */*
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
+ ↳ app/auth/authorize_api_request.rb:20:in `user'
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 12ms (Views: 8.1ms | ActiveRecord: 0.6ms | Allocations: 4374)
+
+
+Started GET "/meets" for 127.0.0.1 at 2020-05-01 16:18:05 -0300
+ [1m[35m (31.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 109ms (Views: 32.9ms | ActiveRecord: 1.4ms | Allocations: 13851)
+
+
+Started GET "/search/a" for 127.0.0.1 at 2020-05-01 16:18:50 -0300
+
+ActionController::RoutingError (uninitialized constant MeetController
+Did you mean? MeetsController
+ MeetingsController):
+
+activesupport (6.0.2.2) lib/active_support/inflector/methods.rb:282:in `const_get'
+activesupport (6.0.2.2) lib/active_support/inflector/methods.rb:282:in `block in constantize'
+activesupport (6.0.2.2) lib/active_support/inflector/methods.rb:280:in `each'
+activesupport (6.0.2.2) lib/active_support/inflector/methods.rb:280:in `inject'
+activesupport (6.0.2.2) lib/active_support/inflector/methods.rb:280:in `constantize'
+activesupport (6.0.2.2) lib/active_support/dependencies/zeitwerk_integration.rb:19:in `constantize'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:88:in `controller_class_for'
+actionpack (6.0.2.2) lib/action_dispatch/http/request.rb:81:in `controller_class'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:45:in `controller'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:31:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:49:in `block in serve'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `each'
+actionpack (6.0.2.2) lib/action_dispatch/journey/router.rb:32:in `serve'
+actionpack (6.0.2.2) lib/action_dispatch/routing/route_set.rb:837:in `call'
+warden (1.2.8) lib/warden/manager.rb:36:in `block in call'
+warden (1.2.8) lib/warden/manager.rb:34:in `catch'
+warden (1.2.8) lib/warden/manager.rb:34:in `call'
+rack (2.2.2) lib/rack/etag.rb:27:in `call'
+rack (2.2.2) lib/rack/conditional_get.rb:27:in `call'
+rack (2.2.2) lib/rack/head.rb:12:in `call'
+activerecord (6.0.2.2) lib/active_record/migration.rb:567:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
+activesupport (6.0.2.2) lib/active_support/callbacks.rb:101:in `run_callbacks'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/favicon.ico" for 127.0.0.1 at 2020-05-01 16:18:52 -0300
+
+ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/search/a" for 127.0.0.1 at 2020-05-01 16:19:10 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#search as HTML
+ Parameters: {"term"=>"a"}
+Completed 204 No Content in 5ms (ActiveRecord: 0.0ms | Allocations: 2103)
+
+
+Started GET "/search/a" for 127.0.0.1 at 2020-05-01 16:19:13 -0300
+Processing by MeetsController#search as HTML
+ Parameters: {"term"=>"a"}
+Completed 204 No Content in 0ms (ActiveRecord: 0.0ms | Allocations: 101)
+
+
+Started GET "/search/a" for 127.0.0.1 at 2020-05-01 16:19:40 -0300
+ [1m[35m (5.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Processing by MeetsController#search as HTML
+ Parameters: {"term"=>"a"}
+Completed 204 No Content in 13ms (ActiveRecord: 0.0ms | Allocations: 2691)
+
+
+Started GET "/search/a" for 127.0.0.1 at 2020-05-01 16:19:47 -0300
+Processing by MeetsController#search as HTML
+ Parameters: {"term"=>"a"}
+Completed 204 No Content in 0ms (ActiveRecord: 0.0ms | Allocations: 101)
+
+
+Started GET "/search/a" for 127.0.0.1 at 2020-05-01 16:19:59 -0300
+Processing by MeetsController#search as HTML
+ Parameters: {"term"=>"a"}
+Completed 204 No Content in 0ms (ActiveRecord: 0.0ms | Allocations: 101)
+
+
+Started GET "/search/AA" for 127.0.0.1 at 2020-05-01 16:20:02 -0300
+Processing by MeetsController#search as HTML
+ Parameters: {"term"=>"AA"}
+Completed 204 No Content in 0ms (ActiveRecord: 0.0ms | Allocations: 101)
+
+
+Started GET "/search/a" for 127.0.0.1 at 2020-05-01 16:20:53 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#search as HTML
+ Parameters: {"term"=>"a"}
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE (meet_title like '%a%' OR meet_description like '%a%')[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.4ms | Allocations: 2977)
+
+
+
+ActiveRecord::StatementInvalid (SQLite3::SQLException: no such column: meet_title):
+
+app/controllers/concerns/response.rb:3:in `json_response'
+app/controllers/meets_controller.rb:40:in `search'
+Started GET "/search/a" for 127.0.0.1 at 2020-05-01 16:21:09 -0300
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+Processing by MeetsController#search as HTML
+ Parameters: {"term"=>"a"}
+ [1m[36mMeet Load (8.9ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE (title like '%a%' OR description like '%a%')[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 33ms (Views: 17.4ms | ActiveRecord: 10.0ms | Allocations: 13339)
+
+
+Started GET "/search/AA" for 127.0.0.1 at 2020-05-01 16:21:16 -0300
+Processing by MeetsController#search as HTML
+ Parameters: {"term"=>"AA"}
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE (title like '%AA%' OR description like '%AA%')[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.4ms | Allocations: 1098)
+
+
+Started GET "/search/Support" for 127.0.0.1 at 2020-05-01 16:21:21 -0300
+Processing by MeetsController#search as HTML
+ Parameters: {"term"=>"Support"}
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE (title like '%Support%' OR description like '%Support%')[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.4ms | Allocations: 3607)
+
+
+Started GET "/search/..." for 127.0.0.1 at 2020-05-01 16:21:29 -0300
+
+ActionController::RoutingError (No route matches [GET] "/search/..."):
+
+actionpack (6.0.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
+railties (6.0.2.2) lib/rails/rack/logger.rb:38:in `call_app'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `block in call'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `block in tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:28:in `tagged'
+activesupport (6.0.2.2) lib/active_support/tagged_logging.rb:80:in `tagged'
+railties (6.0.2.2) lib/rails/rack/logger.rb:26:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/request_id.rb:27:in `call'
+rack (2.2.2) lib/rack/runtime.rb:22:in `call'
+activesupport (6.0.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/static.rb:126:in `call'
+rack (2.2.2) lib/rack/sendfile.rb:110:in `call'
+actionpack (6.0.2.2) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
+rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
+railties (6.0.2.2) lib/rails/engine.rb:526:in `call'
+puma (4.3.3) lib/puma/configuration.rb:228:in `call'
+puma (4.3.3) lib/puma/server.rb:682:in `handle_request'
+puma (4.3.3) lib/puma/server.rb:472:in `process_client'
+puma (4.3.3) lib/puma/server.rb:328:in `block in run'
+puma (4.3.3) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
+Started GET "/search/leave" for 127.0.0.1 at 2020-05-01 16:21:32 -0300
+Processing by MeetsController#search as HTML
+ Parameters: {"term"=>"leave"}
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE (title like '%leave%' OR description like '%leave%')[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.4ms | Allocations: 3827)
+
+
+Started GET "/search/their%20home" for 127.0.0.1 at 2020-05-01 16:21:40 -0300
+Processing by MeetsController#search as HTML
+ Parameters: {"term"=>"their home"}
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE (title like '%their home%' OR description like '%their home%')[0m
+ ↳ app/controllers/concerns/response.rb:3:in `json_response'
+Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.3ms | Allocations: 1090)
+
+
+ [1m[35m (87.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (0.5ms)[0m [1m[34mSELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 15], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUserMeet Create (71.5ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 12], ["meet_id", 15]]
+ [1m[35m (341.9ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mUserMeet Load (0.4ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" LIMIT ?[0m [["LIMIT", 11]]
+ [1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets"[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets"[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 15], ["LIMIT", 1]]
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUserMeet Create (2.6ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 12], ["meet_id", 15]]
+ [1m[35m (323.6ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets"[0m
+ [1m[36mUserMeet Load (0.5ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? LIMIT ?[0m [["user_id", 12], ["meet_id", 15], ["LIMIT", 11]]
+ [1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 12], ["meet_id", 15]]
+ [1m[36mUserMeet Load (0.3ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? LIMIT ?[0m [["user_id", 12], ["meet_id", 33], ["LIMIT", 11]]
+ [1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 12], ["meet_id", 67]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 15], ["LIMIT", 1]]
+ [1m[36mUserMeet Create (2.1ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 12], ["meet_id", 15]]
+ [1m[35m (258.8ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mUserMeet Load (0.5ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? LIMIT ?[0m [["user_id", 21], ["meet_id", 15], ["LIMIT", 11]]
+ [1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 21], ["meet_id", 15]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 15], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.8ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 15], ["LIMIT", 1]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.6ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 15], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 15], ["LIMIT", 1]]
+ [1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 12], ["meet_id", 15]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 12], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 15], ["LIMIT", 1]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 12], ["meet_id", 15]]
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (582.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to CreateConversations (20200504200000)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (1.9ms)[0m [1m[35mCREATE TABLE "conversations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[36mprimary::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200504200000"]]
+ [1m[35m (1079.6ms)[0m [1m[36mcommit transaction[0m
+Migrating to CreateMessagems (20200504200114)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (1.6ms)[0m [1m[35mCREATE TABLE "messagems" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar, "conversation_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_7ac659aa92"
+FOREIGN KEY ("conversation_id")
+ REFERENCES "conversations" ("id")
+)[0m
+ [1m[35m (0.3ms)[0m [1m[35mCREATE INDEX "index_messagems_on_conversation_id" ON "messagems" ("conversation_id")[0m
+ [1m[36mprimary::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200504200114"]]
+ [1m[35m (447.3ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (5.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (5.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to ChangeMeetingIdFromUsers (20200505163428)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (0.3ms)[0m [1m[35mCREATE TEMPORARY TABLE "ausers" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "meeting_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "picture" varchar DEFAULT NULL)[0m
+ [1m[35m (0.5ms)[0m [1m[35mCREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id")[0m
+ [1m[35m (0.2ms)[0m [1m[32mINSERT INTO "ausers" ("id","name","email","password_digest","meeting_id","created_at","updated_at","picture")
+ SELECT "id","name","email","password_digest","meeting_id","created_at","updated_at","picture" FROM "users"[0m
+ [1m[35m (1.5ms)[0m [1m[35mDROP TABLE "users"[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "users" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "meeting_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "picture" varchar DEFAULT NULL, CONSTRAINT "fk_rails_da68fd68e8"
+FOREIGN KEY ("meeting_id")
+ REFERENCES "meetings" ("id")
+)[0m
+ [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id")[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "users" ("id","name","email","password_digest","meeting_id","created_at","updated_at","picture")
+ SELECT "id","name","email","password_digest","meeting_id","created_at","updated_at","picture" FROM "ausers"[0m
+ [1m[35m (0.1ms)[0m [1m[35mDROP TABLE "ausers"[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[36mprimary::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200505163428"]]
+ [1m[35m (103.4ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to RemoveMeetingIdFromUsers (20200505164423)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TEMPORARY TABLE "ausers" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "meeting_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "picture" varchar DEFAULT NULL)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id")[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "ausers" ("id","name","email","password_digest","meeting_id","created_at","updated_at","picture")
+ SELECT "id","name","email","password_digest","meeting_id","created_at","updated_at","picture" FROM "users"[0m
+ [1m[35m (1.9ms)[0m [1m[35mDROP TABLE "users"[0m
+ [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "users" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "picture" varchar DEFAULT NULL)[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "users" ("id","name","email","password_digest","created_at","updated_at","picture")
+ SELECT "id","name","email","password_digest","created_at","updated_at","picture" FROM "ausers"[0m
+ [1m[35m (0.1ms)[0m [1m[35mDROP TABLE "ausers"[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[36mprimary::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200505164423"]]
+ [1m[35m (160.1ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
diff --git a/api/log/test.log b/api/log/test.log
new file mode 100644
index 000000000..11e07303d
--- /dev/null
+++ b/api/log/test.log
@@ -0,0 +1,105817 @@
+ [1m[35m (3.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (3.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (163.8ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
+ [1m[35m (103.9ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to CreateMeets (20200423152906)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (1.4ms)[0m [1m[35mCREATE TABLE "meets" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "frequency" varchar, "duration" float, "day" varchar, "members" integer, "max_members" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[36mprimary::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423152906"]]
+ [1m[35m (117.2ms)[0m [1m[36mcommit transaction[0m
+Migrating to CreateMeetings (20200423153710)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (2.8ms)[0m [1m[35mCREATE TABLE "meetings" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "date" datetime, "confirmed_members" text, "meet_id" integer NOT NULL, "link" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_f82bd1b26a"
+FOREIGN KEY ("meet_id")
+ REFERENCES "meets" ("id")
+)[0m
+ [1m[35m (0.5ms)[0m [1m[35mCREATE INDEX "index_meetings_on_meet_id" ON "meetings" ("meet_id")[0m
+ [1m[36mprimary::SchemaMigration Create (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423153710"]]
+ [1m[35m (161.3ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.6ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Create (15.2ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2020-04-23 15:46:06.240845"], ["updated_at", "2020-04-23 15:46:06.240845"]]
+ [1m[35m (89.3ms)[0m [1m[36mcommit transaction[0m
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (104.8ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (123.9ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (158.4ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (1.1ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (279.4ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (243.2ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (117.0ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "modi"], ["description", "Numquam quod eos quia."], ["created_at", "2020-04-23 16:03:50.363568"], ["updated_at", "2020-04-23 16:03:50.363568"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Non iusto sit et."], ["created_at", "2020-04-23 16:03:50.371356"], ["updated_at", "2020-04-23 16:03:50.371356"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Voluptate libero nostrum at."], ["created_at", "2020-04-23 16:03:50.376063"], ["updated_at", "2020-04-23 16:03:50.376063"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Quo maxime quia dolor."], ["created_at", "2020-04-23 16:03:50.380848"], ["updated_at", "2020-04-23 16:03:50.380848"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Aut et est laboriosam."], ["created_at", "2020-04-23 16:03:50.385192"], ["updated_at", "2020-04-23 16:03:50.385192"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Debitis nobis inventore rem."], ["created_at", "2020-04-23 16:03:50.389043"], ["updated_at", "2020-04-23 16:03:50.389043"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Consequatur quis libero doloribus."], ["created_at", "2020-04-23 16:03:50.393182"], ["updated_at", "2020-04-23 16:03:50.393182"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Sit laborum doloremque dicta."], ["created_at", "2020-04-23 16:03:50.397828"], ["updated_at", "2020-04-23 16:03:50.397828"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Dolores non soluta et."], ["created_at", "2020-04-23 16:03:50.402319"], ["updated_at", "2020-04-23 16:03:50.402319"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ad"], ["description", "Dolores error laboriosam vero."], ["created_at", "2020-04-23 16:03:50.408131"], ["updated_at", "2020-04-23 16:03:50.408131"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.6ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (15.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Dolorem maxime eaque ut."], ["created_at", "2020-04-23 16:03:50.526172"], ["updated_at", "2020-04-23 16:03:50.526172"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "minima"], ["description", "Sed ut non quidem."], ["created_at", "2020-04-23 16:03:50.533755"], ["updated_at", "2020-04-23 16:03:50.533755"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Qui ea quo ipsum."], ["created_at", "2020-04-23 16:03:50.539086"], ["updated_at", "2020-04-23 16:03:50.539086"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "facere"], ["description", "Dignissimos consequatur doloribus ullam."], ["created_at", "2020-04-23 16:03:50.543164"], ["updated_at", "2020-04-23 16:03:50.543164"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Qui et fugiat sed."], ["created_at", "2020-04-23 16:03:50.546591"], ["updated_at", "2020-04-23 16:03:50.546591"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Autem quia nesciunt similique."], ["created_at", "2020-04-23 16:03:50.549903"], ["updated_at", "2020-04-23 16:03:50.549903"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Esse et sed consequatur."], ["created_at", "2020-04-23 16:03:50.553648"], ["updated_at", "2020-04-23 16:03:50.553648"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Vel tempore ex sunt."], ["created_at", "2020-04-23 16:03:50.558761"], ["updated_at", "2020-04-23 16:03:50.558761"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rem"], ["description", "Sint enim et nemo."], ["created_at", "2020-04-23 16:03:50.563199"], ["updated_at", "2020-04-23 16:03:50.563199"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Officiis enim a et."], ["created_at", "2020-04-23 16:03:50.568289"], ["updated_at", "2020-04-23 16:03:50.568289"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (10.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Distinctio doloribus quia eum."], ["created_at", "2020-04-23 16:03:50.588183"], ["updated_at", "2020-04-23 16:03:50.588183"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Omnis quia aut est."], ["created_at", "2020-04-23 16:03:50.591146"], ["updated_at", "2020-04-23 16:03:50.591146"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Debitis qui perferendis quia."], ["created_at", "2020-04-23 16:03:50.593062"], ["updated_at", "2020-04-23 16:03:50.593062"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sint"], ["description", "Consequatur non quasi eum."], ["created_at", "2020-04-23 16:03:50.594471"], ["updated_at", "2020-04-23 16:03:50.594471"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Minima nesciunt placeat corrupti."], ["created_at", "2020-04-23 16:03:50.597706"], ["updated_at", "2020-04-23 16:03:50.597706"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Impedit excepturi in ea."], ["created_at", "2020-04-23 16:03:50.599721"], ["updated_at", "2020-04-23 16:03:50.599721"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Vitae ut dolor omnis."], ["created_at", "2020-04-23 16:03:50.601797"], ["updated_at", "2020-04-23 16:03:50.601797"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Eum fugiat aspernatur est."], ["created_at", "2020-04-23 16:03:50.603014"], ["updated_at", "2020-04-23 16:03:50.603014"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Rerum quae aut sed."], ["created_at", "2020-04-23 16:03:50.604214"], ["updated_at", "2020-04-23 16:03:50.604214"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eos"], ["description", "Nostrum alias aperiam dolore."], ["created_at", "2020-04-23 16:03:50.605974"], ["updated_at", "2020-04-23 16:03:50.605974"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "alias"], ["description", "Nihil fuga qui aspernatur."], ["created_at", "2020-04-23 16:03:50.617737"], ["updated_at", "2020-04-23 16:03:50.617737"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sint"], ["description", "Eius est ipsam qui."], ["created_at", "2020-04-23 16:03:50.621276"], ["updated_at", "2020-04-23 16:03:50.621276"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Qui sapiente omnis laudantium."], ["created_at", "2020-04-23 16:03:50.622663"], ["updated_at", "2020-04-23 16:03:50.622663"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Quam quo fuga est."], ["created_at", "2020-04-23 16:03:50.623799"], ["updated_at", "2020-04-23 16:03:50.623799"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Tempora aut iure nostrum."], ["created_at", "2020-04-23 16:03:50.625009"], ["updated_at", "2020-04-23 16:03:50.625009"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "placeat"], ["description", "In ut natus dolor."], ["created_at", "2020-04-23 16:03:50.626189"], ["updated_at", "2020-04-23 16:03:50.626189"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Odio quia nulla placeat."], ["created_at", "2020-04-23 16:03:50.627350"], ["updated_at", "2020-04-23 16:03:50.627350"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Doloribus et ut modi."], ["created_at", "2020-04-23 16:03:50.628540"], ["updated_at", "2020-04-23 16:03:50.628540"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Qui quae reprehenderit aliquam."], ["created_at", "2020-04-23 16:03:50.629691"], ["updated_at", "2020-04-23 16:03:50.629691"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "natus"], ["description", "Velit illum sunt dignissimos."], ["created_at", "2020-04-23 16:03:50.631600"], ["updated_at", "2020-04-23 16:03:50.631600"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Eum et facere ullam."], ["created_at", "2020-04-23 16:03:50.644793"], ["updated_at", "2020-04-23 16:03:50.644793"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Aut laboriosam laudantium est."], ["created_at", "2020-04-23 16:03:50.647538"], ["updated_at", "2020-04-23 16:03:50.647538"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Ratione voluptatem minus repudiandae."], ["created_at", "2020-04-23 16:03:50.648866"], ["updated_at", "2020-04-23 16:03:50.648866"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Nesciunt voluptas id sapiente."], ["created_at", "2020-04-23 16:03:50.650114"], ["updated_at", "2020-04-23 16:03:50.650114"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cum"], ["description", "Nihil voluptatem error voluptatem."], ["created_at", "2020-04-23 16:03:50.651368"], ["updated_at", "2020-04-23 16:03:50.651368"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Aliquam et nam dolore."], ["created_at", "2020-04-23 16:03:50.652658"], ["updated_at", "2020-04-23 16:03:50.652658"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "beatae"], ["description", "Minus aut quaerat sit."], ["created_at", "2020-04-23 16:03:50.653921"], ["updated_at", "2020-04-23 16:03:50.653921"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Et dignissimos soluta odio."], ["created_at", "2020-04-23 16:03:50.656457"], ["updated_at", "2020-04-23 16:03:50.656457"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "enim"], ["description", "Quia dolorem assumenda doloremque."], ["created_at", "2020-04-23 16:03:50.659727"], ["updated_at", "2020-04-23 16:03:50.659727"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Deleniti ipsam quasi suscipit."], ["created_at", "2020-04-23 16:03:50.662120"], ["updated_at", "2020-04-23 16:03:50.662120"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "atque"], ["description", "Odio aut ut non."], ["created_at", "2020-04-23 16:03:50.672713"], ["updated_at", "2020-04-23 16:03:50.672713"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eum"], ["description", "Aut architecto minima et."], ["created_at", "2020-04-23 16:03:50.676665"], ["updated_at", "2020-04-23 16:03:50.676665"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sint"], ["description", "Vel iste dolores ipsam."], ["created_at", "2020-04-23 16:03:50.680168"], ["updated_at", "2020-04-23 16:03:50.680168"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Quisquam velit ipsa corrupti."], ["created_at", "2020-04-23 16:03:50.681596"], ["updated_at", "2020-04-23 16:03:50.681596"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "facere"], ["description", "Sapiente sit veritatis non."], ["created_at", "2020-04-23 16:03:50.682786"], ["updated_at", "2020-04-23 16:03:50.682786"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Deserunt est ad quo."], ["created_at", "2020-04-23 16:03:50.683925"], ["updated_at", "2020-04-23 16:03:50.683925"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quae"], ["description", "Rerum corrupti et dolores."], ["created_at", "2020-04-23 16:03:50.685101"], ["updated_at", "2020-04-23 16:03:50.685101"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Vel maiores culpa nostrum."], ["created_at", "2020-04-23 16:03:50.686290"], ["updated_at", "2020-04-23 16:03:50.686290"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Qui et impedit tempora."], ["created_at", "2020-04-23 16:03:50.687408"], ["updated_at", "2020-04-23 16:03:50.687408"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Tempore aperiam qui incidunt."], ["created_at", "2020-04-23 16:03:50.689194"], ["updated_at", "2020-04-23 16:03:50.689194"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Id quis nihil et."], ["created_at", "2020-04-23 16:03:50.702602"], ["updated_at", "2020-04-23 16:03:50.702602"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Ut dolores natus unde."], ["created_at", "2020-04-23 16:03:50.705460"], ["updated_at", "2020-04-23 16:03:50.705460"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eius"], ["description", "Deserunt eum cumque rerum."], ["created_at", "2020-04-23 16:03:50.706829"], ["updated_at", "2020-04-23 16:03:50.706829"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "harum"], ["description", "Maxime quidem deleniti qui."], ["created_at", "2020-04-23 16:03:50.708011"], ["updated_at", "2020-04-23 16:03:50.708011"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Ut itaque voluptatum error."], ["created_at", "2020-04-23 16:03:50.709193"], ["updated_at", "2020-04-23 16:03:50.709193"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Qui ad hic id."], ["created_at", "2020-04-23 16:03:50.710502"], ["updated_at", "2020-04-23 16:03:50.710502"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Aut quasi maxime aliquid."], ["created_at", "2020-04-23 16:03:50.711701"], ["updated_at", "2020-04-23 16:03:50.711701"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Velit deserunt omnis omnis."], ["created_at", "2020-04-23 16:03:50.712867"], ["updated_at", "2020-04-23 16:03:50.712867"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ipsam"], ["description", "Nihil fugit quos vel."], ["created_at", "2020-04-23 16:03:50.714021"], ["updated_at", "2020-04-23 16:03:50.714021"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Delectus non sequi quaerat."], ["created_at", "2020-04-23 16:03:50.717522"], ["updated_at", "2020-04-23 16:03:50.717522"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Aperiam tempore at quia."], ["created_at", "2020-04-23 16:03:50.729540"], ["updated_at", "2020-04-23 16:03:50.729540"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Aut voluptatem illo commodi."], ["created_at", "2020-04-23 16:03:50.732344"], ["updated_at", "2020-04-23 16:03:50.732344"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ex"], ["description", "Voluptatum molestiae ut maxime."], ["created_at", "2020-04-23 16:03:50.733623"], ["updated_at", "2020-04-23 16:03:50.733623"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "esse"], ["description", "Sint corrupti aut illo."], ["created_at", "2020-04-23 16:03:50.734824"], ["updated_at", "2020-04-23 16:03:50.734824"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Reprehenderit nesciunt sunt doloremque."], ["created_at", "2020-04-23 16:03:50.737277"], ["updated_at", "2020-04-23 16:03:50.737277"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Voluptates porro officiis magni."], ["created_at", "2020-04-23 16:03:50.740432"], ["updated_at", "2020-04-23 16:03:50.740432"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Dignissimos totam dolores enim."], ["created_at", "2020-04-23 16:03:50.741924"], ["updated_at", "2020-04-23 16:03:50.741924"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Vitae voluptas dolorem beatae."], ["created_at", "2020-04-23 16:03:50.743092"], ["updated_at", "2020-04-23 16:03:50.743092"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Eveniet nostrum ad aliquam."], ["created_at", "2020-04-23 16:03:50.744237"], ["updated_at", "2020-04-23 16:03:50.744237"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Qui vel est aut."], ["created_at", "2020-04-23 16:03:50.746131"], ["updated_at", "2020-04-23 16:03:50.746131"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "porro"], ["description", "Porro omnis magnam animi."], ["created_at", "2020-04-23 16:03:50.759052"], ["updated_at", "2020-04-23 16:03:50.759052"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Autem officiis eos consequatur."], ["created_at", "2020-04-23 16:03:50.762532"], ["updated_at", "2020-04-23 16:03:50.762532"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Voluptate odio ipsa aut."], ["created_at", "2020-04-23 16:03:50.763961"], ["updated_at", "2020-04-23 16:03:50.763961"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Ut sed consequuntur occaecati."], ["created_at", "2020-04-23 16:03:50.765107"], ["updated_at", "2020-04-23 16:03:50.765107"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Hic optio est praesentium."], ["created_at", "2020-04-23 16:03:50.766249"], ["updated_at", "2020-04-23 16:03:50.766249"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Sint facere tempora ut."], ["created_at", "2020-04-23 16:03:50.767377"], ["updated_at", "2020-04-23 16:03:50.767377"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Doloribus voluptatum possimus accusamus."], ["created_at", "2020-04-23 16:03:50.768473"], ["updated_at", "2020-04-23 16:03:50.768473"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Laudantium animi distinctio fugit."], ["created_at", "2020-04-23 16:03:50.769655"], ["updated_at", "2020-04-23 16:03:50.769655"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Aperiam est amet eveniet."], ["created_at", "2020-04-23 16:03:50.770991"], ["updated_at", "2020-04-23 16:03:50.770991"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "modi"], ["description", "Cum possimus quibusdam iste."], ["created_at", "2020-04-23 16:03:50.772762"], ["updated_at", "2020-04-23 16:03:50.772762"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "At beatae velit tenetur."], ["created_at", "2020-04-23 16:03:50.785863"], ["updated_at", "2020-04-23 16:03:50.785863"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Ut consequatur dolore libero."], ["created_at", "2020-04-23 16:03:50.788442"], ["updated_at", "2020-04-23 16:03:50.788442"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "officia"], ["description", "Dolorum aut iure qui."], ["created_at", "2020-04-23 16:03:50.789827"], ["updated_at", "2020-04-23 16:03:50.789827"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Tempore rerum voluptate cum."], ["created_at", "2020-04-23 16:03:50.791084"], ["updated_at", "2020-04-23 16:03:50.791084"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Omnis autem odit dolorem."], ["created_at", "2020-04-23 16:03:50.792325"], ["updated_at", "2020-04-23 16:03:50.792325"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Aliquam beatae tenetur blanditiis."], ["created_at", "2020-04-23 16:03:50.793660"], ["updated_at", "2020-04-23 16:03:50.793660"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "impedit"], ["description", "A provident veniam possimus."], ["created_at", "2020-04-23 16:03:50.794991"], ["updated_at", "2020-04-23 16:03:50.794991"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Eligendi beatae et deserunt."], ["created_at", "2020-04-23 16:03:50.798479"], ["updated_at", "2020-04-23 16:03:50.798479"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Ea possimus illum architecto."], ["created_at", "2020-04-23 16:03:50.801086"], ["updated_at", "2020-04-23 16:03:50.801086"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Deleniti sunt voluptatem necessitatibus."], ["created_at", "2020-04-23 16:03:50.802975"], ["updated_at", "2020-04-23 16:03:50.802975"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Ex laudantium eum quia."], ["created_at", "2020-04-23 16:03:50.813104"], ["updated_at", "2020-04-23 16:03:50.813104"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "labore"], ["description", "Numquam quia hic quidem."], ["created_at", "2020-04-23 16:03:50.816118"], ["updated_at", "2020-04-23 16:03:50.816118"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Sed accusamus aut rem."], ["created_at", "2020-04-23 16:03:50.819281"], ["updated_at", "2020-04-23 16:03:50.819281"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Suscipit omnis enim maiores."], ["created_at", "2020-04-23 16:03:50.821469"], ["updated_at", "2020-04-23 16:03:50.821469"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Aut et tenetur est."], ["created_at", "2020-04-23 16:03:50.822807"], ["updated_at", "2020-04-23 16:03:50.822807"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Ipsum et aliquam praesentium."], ["created_at", "2020-04-23 16:03:50.824084"], ["updated_at", "2020-04-23 16:03:50.824084"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Consequuntur ex inventore et."], ["created_at", "2020-04-23 16:03:50.825261"], ["updated_at", "2020-04-23 16:03:50.825261"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Minus est repudiandae sunt."], ["created_at", "2020-04-23 16:03:50.826457"], ["updated_at", "2020-04-23 16:03:50.826457"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Sapiente deserunt sit doloremque."], ["created_at", "2020-04-23 16:03:50.827704"], ["updated_at", "2020-04-23 16:03:50.827704"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "alias"], ["description", "Ut soluta fugit quaerat."], ["created_at", "2020-04-23 16:03:50.829516"], ["updated_at", "2020-04-23 16:03:50.829516"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Corporis earum qui assumenda."], ["created_at", "2020-04-23 16:03:50.840603"], ["updated_at", "2020-04-23 16:03:50.840603"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Quia aut omnis inventore."], ["created_at", "2020-04-23 16:03:50.843366"], ["updated_at", "2020-04-23 16:03:50.843366"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Occaecati eum quasi voluptas."], ["created_at", "2020-04-23 16:03:50.844741"], ["updated_at", "2020-04-23 16:03:50.844741"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eum"], ["description", "Voluptatibus accusantium quasi eos."], ["created_at", "2020-04-23 16:03:50.845955"], ["updated_at", "2020-04-23 16:03:50.845955"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Laudantium sit beatae ut."], ["created_at", "2020-04-23 16:03:50.847168"], ["updated_at", "2020-04-23 16:03:50.847168"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Ipsum nesciunt nobis nostrum."], ["created_at", "2020-04-23 16:03:50.848660"], ["updated_at", "2020-04-23 16:03:50.848660"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Error quidem aut molestiae."], ["created_at", "2020-04-23 16:03:50.849945"], ["updated_at", "2020-04-23 16:03:50.849945"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eos"], ["description", "Pariatur dicta sunt doloribus."], ["created_at", "2020-04-23 16:03:50.851300"], ["updated_at", "2020-04-23 16:03:50.851300"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Optio natus nesciunt quo."], ["created_at", "2020-04-23 16:03:50.852552"], ["updated_at", "2020-04-23 16:03:50.852552"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Modi eligendi perspiciatis fugiat."], ["created_at", "2020-04-23 16:03:50.854473"], ["updated_at", "2020-04-23 16:03:50.854473"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Laborum vel sint neque."], ["created_at", "2020-04-23 16:03:50.866294"], ["updated_at", "2020-04-23 16:03:50.866294"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Enim omnis assumenda facere."], ["created_at", "2020-04-23 16:03:50.868964"], ["updated_at", "2020-04-23 16:03:50.868964"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Quia quidem quia sed."], ["created_at", "2020-04-23 16:03:50.870396"], ["updated_at", "2020-04-23 16:03:50.870396"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Et asperiores eum vero."], ["created_at", "2020-04-23 16:03:50.871669"], ["updated_at", "2020-04-23 16:03:50.871669"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "laboriosam"], ["description", "Necessitatibus consectetur aut est."], ["created_at", "2020-04-23 16:03:50.872906"], ["updated_at", "2020-04-23 16:03:50.872906"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "velit"], ["description", "Sint libero quod minus."], ["created_at", "2020-04-23 16:03:50.874138"], ["updated_at", "2020-04-23 16:03:50.874138"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eos"], ["description", "Omnis illo et ut."], ["created_at", "2020-04-23 16:03:50.875315"], ["updated_at", "2020-04-23 16:03:50.875315"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "magni"], ["description", "Eaque velit sunt nihil."], ["created_at", "2020-04-23 16:03:50.877099"], ["updated_at", "2020-04-23 16:03:50.877099"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "unde"], ["description", "Qui consequatur tempore doloribus."], ["created_at", "2020-04-23 16:03:50.878492"], ["updated_at", "2020-04-23 16:03:50.878492"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Cum voluptates quis et."], ["created_at", "2020-04-23 16:03:50.881073"], ["updated_at", "2020-04-23 16:03:50.881073"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-04-23 13:03:50 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (4.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (170.8ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (142.1ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Doloribus dolorem sint similique."], ["created_at", "2020-04-23 16:06:05.254071"], ["updated_at", "2020-04-23 16:06:05.254071"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "error"], ["description", "Ut vel et ut."], ["created_at", "2020-04-23 16:06:05.257221"], ["updated_at", "2020-04-23 16:06:05.257221"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "hic"], ["description", "Dolorem vel voluptatem maiores."], ["created_at", "2020-04-23 16:06:05.258625"], ["updated_at", "2020-04-23 16:06:05.258625"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "provident"], ["description", "Delectus accusamus quaerat soluta."], ["created_at", "2020-04-23 16:06:05.259829"], ["updated_at", "2020-04-23 16:06:05.259829"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Quaerat ad et et."], ["created_at", "2020-04-23 16:06:05.260914"], ["updated_at", "2020-04-23 16:06:05.260914"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Qui aliquam eligendi unde."], ["created_at", "2020-04-23 16:06:05.262051"], ["updated_at", "2020-04-23 16:06:05.262051"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Repellat voluptas repellendus voluptatem."], ["created_at", "2020-04-23 16:06:05.263292"], ["updated_at", "2020-04-23 16:06:05.263292"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "odit"], ["description", "Dolores ipsum doloribus itaque."], ["created_at", "2020-04-23 16:06:05.264612"], ["updated_at", "2020-04-23 16:06:05.264612"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Nisi totam dolores id."], ["created_at", "2020-04-23 16:06:05.265789"], ["updated_at", "2020-04-23 16:06:05.265789"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Tempore expedita itaque ab."], ["created_at", "2020-04-23 16:06:05.267490"], ["updated_at", "2020-04-23 16:06:05.267490"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (9.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Error aliquam tempore sunt."], ["created_at", "2020-04-23 16:06:05.294587"], ["updated_at", "2020-04-23 16:06:05.294587"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "a"], ["description", "Sunt commodi accusamus sed."], ["created_at", "2020-04-23 16:06:05.299484"], ["updated_at", "2020-04-23 16:06:05.299484"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illo"], ["description", "Dolores eos voluptatem qui."], ["created_at", "2020-04-23 16:06:05.300923"], ["updated_at", "2020-04-23 16:06:05.300923"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Est eum veniam repudiandae."], ["created_at", "2020-04-23 16:06:05.302190"], ["updated_at", "2020-04-23 16:06:05.302190"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Doloremque quod sapiente libero."], ["created_at", "2020-04-23 16:06:05.303336"], ["updated_at", "2020-04-23 16:06:05.303336"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quaerat"], ["description", "Et pariatur qui minima."], ["created_at", "2020-04-23 16:06:05.304477"], ["updated_at", "2020-04-23 16:06:05.304477"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sint"], ["description", "Sequi a dolores incidunt."], ["created_at", "2020-04-23 16:06:05.305599"], ["updated_at", "2020-04-23 16:06:05.305599"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "velit"], ["description", "Suscipit dolor qui facere."], ["created_at", "2020-04-23 16:06:05.306753"], ["updated_at", "2020-04-23 16:06:05.306753"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Aperiam qui autem qui."], ["created_at", "2020-04-23 16:06:05.307849"], ["updated_at", "2020-04-23 16:06:05.307849"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Architecto tempora quae fugiat."], ["created_at", "2020-04-23 16:06:05.309863"], ["updated_at", "2020-04-23 16:06:05.309863"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Sapiente consequuntur quidem deleniti."], ["created_at", "2020-04-23 16:06:05.321453"], ["updated_at", "2020-04-23 16:06:05.321453"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Quae eaque aut nam."], ["created_at", "2020-04-23 16:06:05.324156"], ["updated_at", "2020-04-23 16:06:05.324156"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Aliquam ut natus voluptas."], ["created_at", "2020-04-23 16:06:05.325437"], ["updated_at", "2020-04-23 16:06:05.325437"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Sunt eos eum nulla."], ["created_at", "2020-04-23 16:06:05.326618"], ["updated_at", "2020-04-23 16:06:05.326618"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Dolore et ipsum cupiditate."], ["created_at", "2020-04-23 16:06:05.327789"], ["updated_at", "2020-04-23 16:06:05.327789"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "A vitae possimus quos."], ["created_at", "2020-04-23 16:06:05.329081"], ["updated_at", "2020-04-23 16:06:05.329081"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eos"], ["description", "Deserunt eveniet beatae numquam."], ["created_at", "2020-04-23 16:06:05.330330"], ["updated_at", "2020-04-23 16:06:05.330330"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ea"], ["description", "Blanditiis veritatis in provident."], ["created_at", "2020-04-23 16:06:05.331493"], ["updated_at", "2020-04-23 16:06:05.331493"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "natus"], ["description", "Repellendus explicabo dolor quibusdam."], ["created_at", "2020-04-23 16:06:05.332642"], ["updated_at", "2020-04-23 16:06:05.332642"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "Sunt voluptas et iusto."], ["created_at", "2020-04-23 16:06:05.334576"], ["updated_at", "2020-04-23 16:06:05.334576"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (3.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Fugiat blanditiis aut dolor."], ["created_at", "2020-04-23 16:06:05.346244"], ["updated_at", "2020-04-23 16:06:05.346244"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Modi repellendus quis est."], ["created_at", "2020-04-23 16:06:05.351270"], ["updated_at", "2020-04-23 16:06:05.351270"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Neque natus sit vel."], ["created_at", "2020-04-23 16:06:05.352581"], ["updated_at", "2020-04-23 16:06:05.352581"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Perspiciatis voluptas asperiores fuga."], ["created_at", "2020-04-23 16:06:05.354230"], ["updated_at", "2020-04-23 16:06:05.354230"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Voluptas sint ut enim."], ["created_at", "2020-04-23 16:06:05.355550"], ["updated_at", "2020-04-23 16:06:05.355550"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Eos molestias ducimus quia."], ["created_at", "2020-04-23 16:06:05.357149"], ["updated_at", "2020-04-23 16:06:05.357149"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nobis"], ["description", "In sit esse modi."], ["created_at", "2020-04-23 16:06:05.359163"], ["updated_at", "2020-04-23 16:06:05.359163"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Ducimus qui voluptas quas."], ["created_at", "2020-04-23 16:06:05.360649"], ["updated_at", "2020-04-23 16:06:05.360649"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Consequuntur autem aut molestiae."], ["created_at", "2020-04-23 16:06:05.361876"], ["updated_at", "2020-04-23 16:06:05.361876"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Non sint omnis eligendi."], ["created_at", "2020-04-23 16:06:05.363763"], ["updated_at", "2020-04-23 16:06:05.363763"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Dolores dignissimos ex reprehenderit."], ["created_at", "2020-04-23 16:06:05.374703"], ["updated_at", "2020-04-23 16:06:05.374703"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Id sit officiis vero."], ["created_at", "2020-04-23 16:06:05.379095"], ["updated_at", "2020-04-23 16:06:05.379095"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Rem pariatur ullam recusandae."], ["created_at", "2020-04-23 16:06:05.380537"], ["updated_at", "2020-04-23 16:06:05.380537"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "beatae"], ["description", "Eius qui et ea."], ["created_at", "2020-04-23 16:06:05.381728"], ["updated_at", "2020-04-23 16:06:05.381728"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Qui eveniet sit ea."], ["created_at", "2020-04-23 16:06:05.383090"], ["updated_at", "2020-04-23 16:06:05.383090"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quae"], ["description", "Et est voluptates soluta."], ["created_at", "2020-04-23 16:06:05.384308"], ["updated_at", "2020-04-23 16:06:05.384308"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Asperiores voluptas ipsam qui."], ["created_at", "2020-04-23 16:06:05.385476"], ["updated_at", "2020-04-23 16:06:05.385476"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Sed error ipsa dolore."], ["created_at", "2020-04-23 16:06:05.386640"], ["updated_at", "2020-04-23 16:06:05.386640"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "at"], ["description", "Rerum quibusdam repellat aut."], ["created_at", "2020-04-23 16:06:05.387750"], ["updated_at", "2020-04-23 16:06:05.387750"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Necessitatibus sunt suscipit beatae."], ["created_at", "2020-04-23 16:06:05.389682"], ["updated_at", "2020-04-23 16:06:05.389682"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (48.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (3.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Vitae consequatur atque rerum."], ["created_at", "2020-04-23 16:06:05.446739"], ["updated_at", "2020-04-23 16:06:05.446739"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Atque ut vero dolores."], ["created_at", "2020-04-23 16:06:05.454618"], ["updated_at", "2020-04-23 16:06:05.454618"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Autem commodi exercitationem deserunt."], ["created_at", "2020-04-23 16:06:05.459021"], ["updated_at", "2020-04-23 16:06:05.459021"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sint"], ["description", "Quod cupiditate impedit delectus."], ["created_at", "2020-04-23 16:06:05.463663"], ["updated_at", "2020-04-23 16:06:05.463663"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quos"], ["description", "Repudiandae ut dolor autem."], ["created_at", "2020-04-23 16:06:05.467424"], ["updated_at", "2020-04-23 16:06:05.467424"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vero"], ["description", "Illum nulla delectus quia."], ["created_at", "2020-04-23 16:06:05.471176"], ["updated_at", "2020-04-23 16:06:05.471176"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Aut tenetur rem est."], ["created_at", "2020-04-23 16:06:05.474765"], ["updated_at", "2020-04-23 16:06:05.474765"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Optio nobis placeat inventore."], ["created_at", "2020-04-23 16:06:05.478733"], ["updated_at", "2020-04-23 16:06:05.478733"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sit"], ["description", "Eius omnis veritatis sunt."], ["created_at", "2020-04-23 16:06:05.482914"], ["updated_at", "2020-04-23 16:06:05.482914"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "harum"], ["description", "Voluptatem eaque et eum."], ["created_at", "2020-04-23 16:06:05.488839"], ["updated_at", "2020-04-23 16:06:05.488839"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (3.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Enim et pariatur sunt."], ["created_at", "2020-04-23 16:06:05.505844"], ["updated_at", "2020-04-23 16:06:05.505844"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Aliquam minus cupiditate voluptas."], ["created_at", "2020-04-23 16:06:05.511416"], ["updated_at", "2020-04-23 16:06:05.511416"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Praesentium temporibus recusandae et."], ["created_at", "2020-04-23 16:06:05.513699"], ["updated_at", "2020-04-23 16:06:05.513699"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Sit sequi vel deserunt."], ["created_at", "2020-04-23 16:06:05.515546"], ["updated_at", "2020-04-23 16:06:05.515546"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "Non eaque velit asperiores."], ["created_at", "2020-04-23 16:06:05.517567"], ["updated_at", "2020-04-23 16:06:05.517567"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Vel non dolorem voluptas."], ["created_at", "2020-04-23 16:06:05.519805"], ["updated_at", "2020-04-23 16:06:05.519805"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Molestiae consequatur quo autem."], ["created_at", "2020-04-23 16:06:05.522045"], ["updated_at", "2020-04-23 16:06:05.522045"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Exercitationem voluptas rem hic."], ["created_at", "2020-04-23 16:06:05.523759"], ["updated_at", "2020-04-23 16:06:05.523759"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "enim"], ["description", "Mollitia velit pariatur dolore."], ["created_at", "2020-04-23 16:06:05.525559"], ["updated_at", "2020-04-23 16:06:05.525559"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Est quam et vero."], ["created_at", "2020-04-23 16:06:05.527990"], ["updated_at", "2020-04-23 16:06:05.527990"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "error"], ["description", "Eum blanditiis earum autem."], ["created_at", "2020-04-23 16:06:05.541584"], ["updated_at", "2020-04-23 16:06:05.541584"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Eveniet in error molestiae."], ["created_at", "2020-04-23 16:06:05.545734"], ["updated_at", "2020-04-23 16:06:05.545734"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Temporibus consequatur amet dicta."], ["created_at", "2020-04-23 16:06:05.547960"], ["updated_at", "2020-04-23 16:06:05.547960"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Quaerat nemo consectetur culpa."], ["created_at", "2020-04-23 16:06:05.549868"], ["updated_at", "2020-04-23 16:06:05.549868"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "iste"], ["description", "Quasi voluptatem voluptatem repudiandae."], ["created_at", "2020-04-23 16:06:05.551548"], ["updated_at", "2020-04-23 16:06:05.551548"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Nemo rem optio maiores."], ["created_at", "2020-04-23 16:06:05.552763"], ["updated_at", "2020-04-23 16:06:05.552763"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vel"], ["description", "Deleniti ut id ipsam."], ["created_at", "2020-04-23 16:06:05.553967"], ["updated_at", "2020-04-23 16:06:05.553967"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Cumque eligendi est consequatur."], ["created_at", "2020-04-23 16:06:05.555209"], ["updated_at", "2020-04-23 16:06:05.555209"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Quod natus libero at."], ["created_at", "2020-04-23 16:06:05.556726"], ["updated_at", "2020-04-23 16:06:05.556726"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Odit quia iusto est."], ["created_at", "2020-04-23 16:06:05.559454"], ["updated_at", "2020-04-23 16:06:05.559454"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "provident"], ["description", "Harum ipsa maxime consequatur."], ["created_at", "2020-04-23 16:06:05.570309"], ["updated_at", "2020-04-23 16:06:05.570309"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Architecto vitae quis corrupti."], ["created_at", "2020-04-23 16:06:05.574378"], ["updated_at", "2020-04-23 16:06:05.574378"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Consequuntur nemo deserunt voluptas."], ["created_at", "2020-04-23 16:06:05.575727"], ["updated_at", "2020-04-23 16:06:05.575727"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Dolorem temporibus autem et."], ["created_at", "2020-04-23 16:06:05.577215"], ["updated_at", "2020-04-23 16:06:05.577215"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Voluptatum doloribus deleniti esse."], ["created_at", "2020-04-23 16:06:05.579036"], ["updated_at", "2020-04-23 16:06:05.579036"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nisi"], ["description", "Itaque commodi molestias ut."], ["created_at", "2020-04-23 16:06:05.581010"], ["updated_at", "2020-04-23 16:06:05.581010"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Quia sed sit necessitatibus."], ["created_at", "2020-04-23 16:06:05.582205"], ["updated_at", "2020-04-23 16:06:05.582205"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Officia aut temporibus harum."], ["created_at", "2020-04-23 16:06:05.583366"], ["updated_at", "2020-04-23 16:06:05.583366"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Suscipit quos nobis quaerat."], ["created_at", "2020-04-23 16:06:05.584537"], ["updated_at", "2020-04-23 16:06:05.584537"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Odio error impedit consequatur."], ["created_at", "2020-04-23 16:06:05.586315"], ["updated_at", "2020-04-23 16:06:05.586315"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Architecto repellendus enim cupiditate."], ["created_at", "2020-04-23 16:06:05.596273"], ["updated_at", "2020-04-23 16:06:05.596273"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sint"], ["description", "Necessitatibus placeat odit qui."], ["created_at", "2020-04-23 16:06:05.599667"], ["updated_at", "2020-04-23 16:06:05.599667"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Praesentium sunt omnis omnis."], ["created_at", "2020-04-23 16:06:05.601331"], ["updated_at", "2020-04-23 16:06:05.601331"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Nobis aut corrupti dolores."], ["created_at", "2020-04-23 16:06:05.602555"], ["updated_at", "2020-04-23 16:06:05.602555"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Veniam magni fugiat ut."], ["created_at", "2020-04-23 16:06:05.604019"], ["updated_at", "2020-04-23 16:06:05.604019"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "autem"], ["description", "Itaque facilis voluptatem accusamus."], ["created_at", "2020-04-23 16:06:05.605303"], ["updated_at", "2020-04-23 16:06:05.605303"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Excepturi et cupiditate architecto."], ["created_at", "2020-04-23 16:06:05.606516"], ["updated_at", "2020-04-23 16:06:05.606516"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Optio qui ullam culpa."], ["created_at", "2020-04-23 16:06:05.607718"], ["updated_at", "2020-04-23 16:06:05.607718"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Iusto deleniti illo laudantium."], ["created_at", "2020-04-23 16:06:05.608960"], ["updated_at", "2020-04-23 16:06:05.608960"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Sapiente temporibus rerum assumenda."], ["created_at", "2020-04-23 16:06:05.610959"], ["updated_at", "2020-04-23 16:06:05.610959"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (67.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Laborum eum eaque praesentium."], ["created_at", "2020-04-23 16:06:05.622623"], ["updated_at", "2020-04-23 16:06:05.622623"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Vel ea aliquam omnis."], ["created_at", "2020-04-23 16:06:05.692892"], ["updated_at", "2020-04-23 16:06:05.692892"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "harum"], ["description", "Quo adipisci aliquid ducimus."], ["created_at", "2020-04-23 16:06:05.696985"], ["updated_at", "2020-04-23 16:06:05.696985"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Similique ut numquam qui."], ["created_at", "2020-04-23 16:06:05.700759"], ["updated_at", "2020-04-23 16:06:05.700759"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "amet"], ["description", "Omnis officiis cupiditate sit."], ["created_at", "2020-04-23 16:06:05.704242"], ["updated_at", "2020-04-23 16:06:05.704242"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Et quia consequuntur nesciunt."], ["created_at", "2020-04-23 16:06:05.707683"], ["updated_at", "2020-04-23 16:06:05.707683"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "In dolorem quisquam aliquam."], ["created_at", "2020-04-23 16:06:05.711085"], ["updated_at", "2020-04-23 16:06:05.711085"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Et accusantium fugit nobis."], ["created_at", "2020-04-23 16:06:05.714497"], ["updated_at", "2020-04-23 16:06:05.714497"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Voluptas veritatis cupiditate atque."], ["created_at", "2020-04-23 16:06:05.717951"], ["updated_at", "2020-04-23 16:06:05.717951"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Aut dolores quaerat ad."], ["created_at", "2020-04-23 16:06:05.723118"], ["updated_at", "2020-04-23 16:06:05.723118"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (14.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "autem"], ["description", "Nulla reprehenderit fuga omnis."], ["created_at", "2020-04-23 16:06:05.750110"], ["updated_at", "2020-04-23 16:06:05.750110"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Officiis culpa quam autem."], ["created_at", "2020-04-23 16:06:05.757224"], ["updated_at", "2020-04-23 16:06:05.757224"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Earum debitis ipsa eveniet."], ["created_at", "2020-04-23 16:06:05.761962"], ["updated_at", "2020-04-23 16:06:05.761962"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Nobis quia debitis ex."], ["created_at", "2020-04-23 16:06:05.766280"], ["updated_at", "2020-04-23 16:06:05.766280"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Debitis sunt qui est."], ["created_at", "2020-04-23 16:06:05.770069"], ["updated_at", "2020-04-23 16:06:05.770069"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Nihil officia ut hic."], ["created_at", "2020-04-23 16:06:05.773637"], ["updated_at", "2020-04-23 16:06:05.773637"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "modi"], ["description", "Sunt aut porro accusantium."], ["created_at", "2020-04-23 16:06:05.777177"], ["updated_at", "2020-04-23 16:06:05.777177"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Est quas non cumque."], ["created_at", "2020-04-23 16:06:05.781328"], ["updated_at", "2020-04-23 16:06:05.781328"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ex"], ["description", "Aperiam omnis sint harum."], ["created_at", "2020-04-23 16:06:05.785052"], ["updated_at", "2020-04-23 16:06:05.785052"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Inventore voluptatum molestiae reiciendis."], ["created_at", "2020-04-23 16:06:05.790168"], ["updated_at", "2020-04-23 16:06:05.790168"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (14.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Rerum dolor non et."], ["created_at", "2020-04-23 16:06:05.817493"], ["updated_at", "2020-04-23 16:06:05.817493"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Eius a non dolor."], ["created_at", "2020-04-23 16:06:05.825427"], ["updated_at", "2020-04-23 16:06:05.825427"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Qui ducimus dolore non."], ["created_at", "2020-04-23 16:06:05.830388"], ["updated_at", "2020-04-23 16:06:05.830388"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ad"], ["description", "Sunt deserunt ut mollitia."], ["created_at", "2020-04-23 16:06:05.833915"], ["updated_at", "2020-04-23 16:06:05.833915"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Pariatur nam officiis dignissimos."], ["created_at", "2020-04-23 16:06:05.837211"], ["updated_at", "2020-04-23 16:06:05.837211"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Porro et veritatis et."], ["created_at", "2020-04-23 16:06:05.841420"], ["updated_at", "2020-04-23 16:06:05.841420"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Ratione ex ad vel."], ["created_at", "2020-04-23 16:06:05.845795"], ["updated_at", "2020-04-23 16:06:05.845795"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Quos amet sed labore."], ["created_at", "2020-04-23 16:06:05.850057"], ["updated_at", "2020-04-23 16:06:05.850057"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Deleniti qui occaecati veniam."], ["created_at", "2020-04-23 16:06:05.852741"], ["updated_at", "2020-04-23 16:06:05.852741"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eum"], ["description", "Vero quas nam error."], ["created_at", "2020-04-23 16:06:05.855751"], ["updated_at", "2020-04-23 16:06:05.855751"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-04-23 13:06:05 -0300
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (27.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (100.5ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (107.0ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (22.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Cumque consequatur qui sint."], ["created_at", "2020-04-23 16:11:18.800984"], ["updated_at", "2020-04-23 16:11:18.800984"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Cupiditate perferendis adipisci id."], ["created_at", "2020-04-23 16:11:18.804517"], ["updated_at", "2020-04-23 16:11:18.804517"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Est cupiditate dolore et."], ["created_at", "2020-04-23 16:11:18.806002"], ["updated_at", "2020-04-23 16:11:18.806002"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Temporibus ut adipisci sint."], ["created_at", "2020-04-23 16:11:18.807320"], ["updated_at", "2020-04-23 16:11:18.807320"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Ut ut doloribus repudiandae."], ["created_at", "2020-04-23 16:11:18.808635"], ["updated_at", "2020-04-23 16:11:18.808635"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Quae doloribus et soluta."], ["created_at", "2020-04-23 16:11:18.809956"], ["updated_at", "2020-04-23 16:11:18.809956"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "odit"], ["description", "Est quod voluptatum voluptas."], ["created_at", "2020-04-23 16:11:18.811292"], ["updated_at", "2020-04-23 16:11:18.811292"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nemo"], ["description", "Nostrum quas quibusdam asperiores."], ["created_at", "2020-04-23 16:11:18.812470"], ["updated_at", "2020-04-23 16:11:18.812470"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eius"], ["description", "Optio distinctio ut consequatur."], ["created_at", "2020-04-23 16:11:18.813559"], ["updated_at", "2020-04-23 16:11:18.813559"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Harum pariatur magnam atque."], ["created_at", "2020-04-23 16:11:18.815626"], ["updated_at", "2020-04-23 16:11:18.815626"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:11:18 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms | Allocations: 2341)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (9.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Nostrum natus quia quos."], ["created_at", "2020-04-23 16:11:18.899304"], ["updated_at", "2020-04-23 16:11:18.899304"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Tempora dicta officiis sunt."], ["created_at", "2020-04-23 16:11:18.905706"], ["updated_at", "2020-04-23 16:11:18.905706"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "autem"], ["description", "In vel aliquam voluptatem."], ["created_at", "2020-04-23 16:11:18.909033"], ["updated_at", "2020-04-23 16:11:18.909033"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Ad est doloremque iure."], ["created_at", "2020-04-23 16:11:18.911895"], ["updated_at", "2020-04-23 16:11:18.911895"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Quia numquam at quisquam."], ["created_at", "2020-04-23 16:11:18.914648"], ["updated_at", "2020-04-23 16:11:18.914648"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Magnam recusandae sapiente velit."], ["created_at", "2020-04-23 16:11:18.917649"], ["updated_at", "2020-04-23 16:11:18.917649"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Accusamus quia dolorum est."], ["created_at", "2020-04-23 16:11:18.922471"], ["updated_at", "2020-04-23 16:11:18.922471"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Voluptatem quos esse ex."], ["created_at", "2020-04-23 16:11:18.926067"], ["updated_at", "2020-04-23 16:11:18.926067"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Aut minima enim ut."], ["created_at", "2020-04-23 16:11:18.929090"], ["updated_at", "2020-04-23 16:11:18.929090"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "atque"], ["description", "Necessitatibus non sint saepe."], ["created_at", "2020-04-23 16:11:18.931922"], ["updated_at", "2020-04-23 16:11:18.931922"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:11:18 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2167)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (39.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Nemo nesciunt odit maxime."], ["created_at", "2020-04-23 16:11:18.985282"], ["updated_at", "2020-04-23 16:11:18.985282"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Quidem qui eum accusamus."], ["created_at", "2020-04-23 16:11:18.992732"], ["updated_at", "2020-04-23 16:11:18.992732"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Dolor nihil praesentium sed."], ["created_at", "2020-04-23 16:11:18.995982"], ["updated_at", "2020-04-23 16:11:18.995982"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Autem perspiciatis et aut."], ["created_at", "2020-04-23 16:11:19.000382"], ["updated_at", "2020-04-23 16:11:19.000382"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Aut enim vel est."], ["created_at", "2020-04-23 16:11:19.005671"], ["updated_at", "2020-04-23 16:11:19.005671"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Laboriosam tempora doloribus saepe."], ["created_at", "2020-04-23 16:11:19.009207"], ["updated_at", "2020-04-23 16:11:19.009207"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Ipsa reprehenderit est repellendus."], ["created_at", "2020-04-23 16:11:19.012237"], ["updated_at", "2020-04-23 16:11:19.012237"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sint"], ["description", "Ducimus cumque eaque et."], ["created_at", "2020-04-23 16:11:19.015244"], ["updated_at", "2020-04-23 16:11:19.015244"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Deleniti distinctio quod animi."], ["created_at", "2020-04-23 16:11:19.019233"], ["updated_at", "2020-04-23 16:11:19.019233"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Possimus voluptatem delectus corporis."], ["created_at", "2020-04-23 16:11:19.024311"], ["updated_at", "2020-04-23 16:11:19.024311"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:11:19 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms | Allocations: 533)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Optio atque voluptatem velit."], ["created_at", "2020-04-23 16:11:19.043845"], ["updated_at", "2020-04-23 16:11:19.043845"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Iste vel quia dolorem."], ["created_at", "2020-04-23 16:11:19.047526"], ["updated_at", "2020-04-23 16:11:19.047526"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "officia"], ["description", "Sint et omnis debitis."], ["created_at", "2020-04-23 16:11:19.049576"], ["updated_at", "2020-04-23 16:11:19.049576"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Rerum consequatur at consequatur."], ["created_at", "2020-04-23 16:11:19.051596"], ["updated_at", "2020-04-23 16:11:19.051596"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ab"], ["description", "Accusamus quasi et placeat."], ["created_at", "2020-04-23 16:11:19.052876"], ["updated_at", "2020-04-23 16:11:19.052876"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Quis dolore recusandae placeat."], ["created_at", "2020-04-23 16:11:19.053992"], ["updated_at", "2020-04-23 16:11:19.053992"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illo"], ["description", "Odit laborum occaecati dolores."], ["created_at", "2020-04-23 16:11:19.055196"], ["updated_at", "2020-04-23 16:11:19.055196"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Nobis quod corporis magnam."], ["created_at", "2020-04-23 16:11:19.056571"], ["updated_at", "2020-04-23 16:11:19.056571"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nisi"], ["description", "Qui amet aut omnis."], ["created_at", "2020-04-23 16:11:19.057797"], ["updated_at", "2020-04-23 16:11:19.057797"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Minus enim libero est."], ["created_at", "2020-04-23 16:11:19.061489"], ["updated_at", "2020-04-23 16:11:19.061489"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:11:19 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 393)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Fugit suscipit illum libero."], ["created_at", "2020-04-23 16:11:19.074564"], ["updated_at", "2020-04-23 16:11:19.074564"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "provident"], ["description", "Unde quia sit dolores."], ["created_at", "2020-04-23 16:11:19.077456"], ["updated_at", "2020-04-23 16:11:19.077456"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Enim libero non quia."], ["created_at", "2020-04-23 16:11:19.079653"], ["updated_at", "2020-04-23 16:11:19.079653"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Nostrum necessitatibus voluptas est."], ["created_at", "2020-04-23 16:11:19.082898"], ["updated_at", "2020-04-23 16:11:19.082898"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Facilis quos qui omnis."], ["created_at", "2020-04-23 16:11:19.085220"], ["updated_at", "2020-04-23 16:11:19.085220"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Aliquam iusto dolores corrupti."], ["created_at", "2020-04-23 16:11:19.086574"], ["updated_at", "2020-04-23 16:11:19.086574"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sit"], ["description", "Voluptatibus rem et aperiam."], ["created_at", "2020-04-23 16:11:19.087865"], ["updated_at", "2020-04-23 16:11:19.087865"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Et ratione sit est."], ["created_at", "2020-04-23 16:11:19.089074"], ["updated_at", "2020-04-23 16:11:19.089074"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ea"], ["description", "Officiis excepturi nihil quo."], ["created_at", "2020-04-23 16:11:19.090225"], ["updated_at", "2020-04-23 16:11:19.090225"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Eum consequatur illum ut."], ["created_at", "2020-04-23 16:11:19.092068"], ["updated_at", "2020-04-23 16:11:19.092068"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:11:19 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 220)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Cupiditate animi nemo consequatur."], ["created_at", "2020-04-23 16:11:19.107423"], ["updated_at", "2020-04-23 16:11:19.107423"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Dolorum sapiente ab veritatis."], ["created_at", "2020-04-23 16:11:19.110203"], ["updated_at", "2020-04-23 16:11:19.110203"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Quia aut eum nam."], ["created_at", "2020-04-23 16:11:19.111653"], ["updated_at", "2020-04-23 16:11:19.111653"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "odit"], ["description", "Quia porro distinctio doloribus."], ["created_at", "2020-04-23 16:11:19.112968"], ["updated_at", "2020-04-23 16:11:19.112968"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "atque"], ["description", "Voluptatem voluptatem iusto deserunt."], ["created_at", "2020-04-23 16:11:19.114231"], ["updated_at", "2020-04-23 16:11:19.114231"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Quibusdam unde occaecati et."], ["created_at", "2020-04-23 16:11:19.115491"], ["updated_at", "2020-04-23 16:11:19.115491"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Dolorum magnam eaque inventore."], ["created_at", "2020-04-23 16:11:19.116654"], ["updated_at", "2020-04-23 16:11:19.116654"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Inventore voluptatem illo sed."], ["created_at", "2020-04-23 16:11:19.117893"], ["updated_at", "2020-04-23 16:11:19.117893"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Doloremque ducimus officia itaque."], ["created_at", "2020-04-23 16:11:19.120388"], ["updated_at", "2020-04-23 16:11:19.120388"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quod"], ["description", "Aliquam eius dolorum id."], ["created_at", "2020-04-23 16:11:19.124260"], ["updated_at", "2020-04-23 16:11:19.124260"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:11:19 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (9.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Iste illum vel suscipit."], ["created_at", "2020-04-23 16:11:19.169110"], ["updated_at", "2020-04-23 16:11:19.169110"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Beatae odit dolore labore."], ["created_at", "2020-04-23 16:11:19.173594"], ["updated_at", "2020-04-23 16:11:19.173594"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Ipsa earum sapiente sunt."], ["created_at", "2020-04-23 16:11:19.176515"], ["updated_at", "2020-04-23 16:11:19.176515"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Earum reprehenderit quisquam totam."], ["created_at", "2020-04-23 16:11:19.179937"], ["updated_at", "2020-04-23 16:11:19.179937"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Ut quis error reiciendis."], ["created_at", "2020-04-23 16:11:19.184421"], ["updated_at", "2020-04-23 16:11:19.184421"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Enim veritatis reiciendis vero."], ["created_at", "2020-04-23 16:11:19.187834"], ["updated_at", "2020-04-23 16:11:19.187834"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quo"], ["description", "Minima ut tempora dolores."], ["created_at", "2020-04-23 16:11:19.190568"], ["updated_at", "2020-04-23 16:11:19.190568"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Occaecati nemo laborum aut."], ["created_at", "2020-04-23 16:11:19.193228"], ["updated_at", "2020-04-23 16:11:19.193228"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "velit"], ["description", "Architecto id animi aut."], ["created_at", "2020-04-23 16:11:19.195766"], ["updated_at", "2020-04-23 16:11:19.195766"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Mollitia eum corporis porro."], ["created_at", "2020-04-23 16:11:19.200312"], ["updated_at", "2020-04-23 16:11:19.200312"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:11:19 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 16:11:19.274890"], ["updated_at", "2020-04-23 16:11:19.274890"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 3ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 737)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Quia repellendus dolorem dicta."], ["created_at", "2020-04-23 16:11:19.288002"], ["updated_at", "2020-04-23 16:11:19.288002"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quae"], ["description", "Accusamus debitis et dolores."], ["created_at", "2020-04-23 16:11:19.290896"], ["updated_at", "2020-04-23 16:11:19.290896"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "minima"], ["description", "Expedita numquam totam magni."], ["created_at", "2020-04-23 16:11:19.292627"], ["updated_at", "2020-04-23 16:11:19.292627"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Velit est debitis rerum."], ["created_at", "2020-04-23 16:11:19.294340"], ["updated_at", "2020-04-23 16:11:19.294340"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Pariatur itaque incidunt dolorem."], ["created_at", "2020-04-23 16:11:19.295882"], ["updated_at", "2020-04-23 16:11:19.295882"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quaerat"], ["description", "Aut asperiores veritatis et."], ["created_at", "2020-04-23 16:11:19.297197"], ["updated_at", "2020-04-23 16:11:19.297197"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Esse est corporis magnam."], ["created_at", "2020-04-23 16:11:19.298476"], ["updated_at", "2020-04-23 16:11:19.298476"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Aut nobis facere quis."], ["created_at", "2020-04-23 16:11:19.300546"], ["updated_at", "2020-04-23 16:11:19.300546"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Qui consequatur molestias quam."], ["created_at", "2020-04-23 16:11:19.303333"], ["updated_at", "2020-04-23 16:11:19.303333"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "amet"], ["description", "Rerum quasi dolores molestiae."], ["created_at", "2020-04-23 16:11:19.305830"], ["updated_at", "2020-04-23 16:11:19.305830"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:11:19 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 16:11:19.308458"], ["updated_at", "2020-04-23 16:11:19.308458"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 730)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vel"], ["description", "Laborum voluptatem ullam architecto."], ["created_at", "2020-04-23 16:11:19.319514"], ["updated_at", "2020-04-23 16:11:19.319514"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eum"], ["description", "Esse omnis labore qui."], ["created_at", "2020-04-23 16:11:19.324399"], ["updated_at", "2020-04-23 16:11:19.324399"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cum"], ["description", "In adipisci voluptas necessitatibus."], ["created_at", "2020-04-23 16:11:19.326068"], ["updated_at", "2020-04-23 16:11:19.326068"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Sunt et accusantium aliquid."], ["created_at", "2020-04-23 16:11:19.327372"], ["updated_at", "2020-04-23 16:11:19.327372"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Voluptas sequi sapiente id."], ["created_at", "2020-04-23 16:11:19.328630"], ["updated_at", "2020-04-23 16:11:19.328630"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Dolorum non commodi animi."], ["created_at", "2020-04-23 16:11:19.329949"], ["updated_at", "2020-04-23 16:11:19.329949"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illo"], ["description", "Sit neque nesciunt necessitatibus."], ["created_at", "2020-04-23 16:11:19.331155"], ["updated_at", "2020-04-23 16:11:19.331155"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Sapiente quo ut non."], ["created_at", "2020-04-23 16:11:19.332323"], ["updated_at", "2020-04-23 16:11:19.332323"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Harum autem quod reprehenderit."], ["created_at", "2020-04-23 16:11:19.333512"], ["updated_at", "2020-04-23 16:11:19.333512"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quae"], ["description", "Ut iusto magni voluptatem."], ["created_at", "2020-04-23 16:11:19.335280"], ["updated_at", "2020-04-23 16:11:19.335280"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:11:19 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 874)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Dolor magni rem est."], ["created_at", "2020-04-23 16:11:19.350013"], ["updated_at", "2020-04-23 16:11:19.350013"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Quasi quis aut modi."], ["created_at", "2020-04-23 16:11:19.352790"], ["updated_at", "2020-04-23 16:11:19.352790"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "neque"], ["description", "Facere dolor deserunt maiores."], ["created_at", "2020-04-23 16:11:19.354079"], ["updated_at", "2020-04-23 16:11:19.354079"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Autem doloribus dolor accusantium."], ["created_at", "2020-04-23 16:11:19.355324"], ["updated_at", "2020-04-23 16:11:19.355324"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Aspernatur reiciendis vel provident."], ["created_at", "2020-04-23 16:11:19.356667"], ["updated_at", "2020-04-23 16:11:19.356667"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Laborum hic et deserunt."], ["created_at", "2020-04-23 16:11:19.357929"], ["updated_at", "2020-04-23 16:11:19.357929"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Eveniet explicabo non ut."], ["created_at", "2020-04-23 16:11:19.359151"], ["updated_at", "2020-04-23 16:11:19.359151"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "odit"], ["description", "Voluptates et architecto et."], ["created_at", "2020-04-23 16:11:19.361061"], ["updated_at", "2020-04-23 16:11:19.361061"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Sed ducimus qui consectetur."], ["created_at", "2020-04-23 16:11:19.364293"], ["updated_at", "2020-04-23 16:11:19.364293"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Sint provident voluptatem laudantium."], ["created_at", "2020-04-23 16:11:19.366496"], ["updated_at", "2020-04-23 16:11:19.366496"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:11:19 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 853)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Officia provident blanditiis aut."], ["created_at", "2020-04-23 16:11:19.379715"], ["updated_at", "2020-04-23 16:11:19.379715"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Iure quod amet dolores."], ["created_at", "2020-04-23 16:11:19.382859"], ["updated_at", "2020-04-23 16:11:19.382859"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "facere"], ["description", "Quia cumque dolores perspiciatis."], ["created_at", "2020-04-23 16:11:19.384724"], ["updated_at", "2020-04-23 16:11:19.384724"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Repellat sed odit quae."], ["created_at", "2020-04-23 16:11:19.385961"], ["updated_at", "2020-04-23 16:11:19.385961"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quam"], ["description", "Fugiat qui soluta enim."], ["created_at", "2020-04-23 16:11:19.387358"], ["updated_at", "2020-04-23 16:11:19.387358"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Expedita molestiae accusantium et."], ["created_at", "2020-04-23 16:11:19.388599"], ["updated_at", "2020-04-23 16:11:19.388599"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Qui iusto et perspiciatis."], ["created_at", "2020-04-23 16:11:19.389790"], ["updated_at", "2020-04-23 16:11:19.389790"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Sit ipsum expedita adipisci."], ["created_at", "2020-04-23 16:11:19.391051"], ["updated_at", "2020-04-23 16:11:19.391051"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Porro quo occaecati tempore."], ["created_at", "2020-04-23 16:11:19.392254"], ["updated_at", "2020-04-23 16:11:19.392254"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Quidem fugiat vel earum."], ["created_at", "2020-04-23 16:11:19.394072"], ["updated_at", "2020-04-23 16:11:19.394072"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:11:19 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.1ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 16:11:19.397154"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 772)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Libero velit dolores culpa."], ["created_at", "2020-04-23 16:11:19.408555"], ["updated_at", "2020-04-23 16:11:19.408555"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "earum"], ["description", "Eum cupiditate laudantium vel."], ["created_at", "2020-04-23 16:11:19.411337"], ["updated_at", "2020-04-23 16:11:19.411337"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "Soluta veritatis voluptas et."], ["created_at", "2020-04-23 16:11:19.412654"], ["updated_at", "2020-04-23 16:11:19.412654"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Sit repellat qui tempora."], ["created_at", "2020-04-23 16:11:19.413872"], ["updated_at", "2020-04-23 16:11:19.413872"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Non laudantium quibusdam blanditiis."], ["created_at", "2020-04-23 16:11:19.415107"], ["updated_at", "2020-04-23 16:11:19.415107"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Fugit maiores magni quia."], ["created_at", "2020-04-23 16:11:19.416421"], ["updated_at", "2020-04-23 16:11:19.416421"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quo"], ["description", "Quod ad voluptatem nemo."], ["created_at", "2020-04-23 16:11:19.417568"], ["updated_at", "2020-04-23 16:11:19.417568"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Quaerat rerum culpa quod."], ["created_at", "2020-04-23 16:11:19.418777"], ["updated_at", "2020-04-23 16:11:19.418777"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Debitis beatae amet molestias."], ["created_at", "2020-04-23 16:11:19.420086"], ["updated_at", "2020-04-23 16:11:19.420086"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "enim"], ["description", "Omnis ea eius culpa."], ["created_at", "2020-04-23 16:11:19.422492"], ["updated_at", "2020-04-23 16:11:19.422492"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:11:19 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.1ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 16:11:19.425888"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 706)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Commodi eligendi enim dolores."], ["created_at", "2020-04-23 16:11:19.437511"], ["updated_at", "2020-04-23 16:11:19.437511"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Qui reprehenderit quisquam provident."], ["created_at", "2020-04-23 16:11:19.440664"], ["updated_at", "2020-04-23 16:11:19.440664"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Ab voluptate maiores consequuntur."], ["created_at", "2020-04-23 16:11:19.442412"], ["updated_at", "2020-04-23 16:11:19.442412"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Est iure dolores distinctio."], ["created_at", "2020-04-23 16:11:19.444235"], ["updated_at", "2020-04-23 16:11:19.444235"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quo"], ["description", "Perferendis amet nostrum eveniet."], ["created_at", "2020-04-23 16:11:19.445503"], ["updated_at", "2020-04-23 16:11:19.445503"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "odio"], ["description", "Hic officiis eveniet et."], ["created_at", "2020-04-23 16:11:19.446729"], ["updated_at", "2020-04-23 16:11:19.446729"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Deserunt odio non expedita."], ["created_at", "2020-04-23 16:11:19.447904"], ["updated_at", "2020-04-23 16:11:19.447904"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Blanditiis aliquam quis maiores."], ["created_at", "2020-04-23 16:11:19.449116"], ["updated_at", "2020-04-23 16:11:19.449116"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Beatae ut aut ut."], ["created_at", "2020-04-23 16:11:19.450298"], ["updated_at", "2020-04-23 16:11:19.450298"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Necessitatibus perspiciatis rerum ut."], ["created_at", "2020-04-23 16:11:19.452740"], ["updated_at", "2020-04-23 16:11:19.452740"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-04-23 13:11:19 -0300
+Processing by MeetsController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Load (0.4ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mMeet Destroy (0.5ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 225ms (ActiveRecord: 1.3ms | Allocations: 3137)
+ [1m[35m (0.6ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (15.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (372.0ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (106.9ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Provident repellendus voluptatem similique."], ["created_at", "2020-04-23 16:31:01.873257"], ["updated_at", "2020-04-23 16:31:01.873257"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel nam odit repellat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.887035"], ["updated_at", "2020-04-23 16:31:01.887035"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laudantium aliquam ut soluta?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.889559"], ["updated_at", "2020-04-23 16:31:01.889559"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Explicabo voluptatem voluptatem aspernatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.891338"], ["updated_at", "2020-04-23 16:31:01.891338"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Pariatur ratione corrupti velit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.893056"], ["updated_at", "2020-04-23 16:31:01.893056"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Itaque inventore tenetur aliquam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.894832"], ["updated_at", "2020-04-23 16:31:01.894832"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Impedit sed eos mollitia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.896551"], ["updated_at", "2020-04-23 16:31:01.896551"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos et modi pariatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.899336"], ["updated_at", "2020-04-23 16:31:01.899336"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut omnis similique reprehenderit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.902172"], ["updated_at", "2020-04-23 16:31:01.902172"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui cum tempore eius?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.904574"], ["updated_at", "2020-04-23 16:31:01.904574"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perspiciatis enim doloribus voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.906527"], ["updated_at", "2020-04-23 16:31:01.906527"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo maiores odit quisquam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.908696"], ["updated_at", "2020-04-23 16:31:01.908696"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem eum iusto minima?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.910669"], ["updated_at", "2020-04-23 16:31:01.910669"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui at quis cupiditate?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.912655"], ["updated_at", "2020-04-23 16:31:01.912655"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellat doloremque explicabo fuga?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.914538"], ["updated_at", "2020-04-23 16:31:01.914538"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Enim ducimus hic maiores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.916408"], ["updated_at", "2020-04-23 16:31:01.916408"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui qui aut qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.918366"], ["updated_at", "2020-04-23 16:31:01.918366"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non labore et sit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.920244"], ["updated_at", "2020-04-23 16:31:01.920244"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facere non qui amet?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.921980"], ["updated_at", "2020-04-23 16:31:01.921980"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perspiciatis nulla velit perferendis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.924176"], ["updated_at", "2020-04-23 16:31:01.924176"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est ut omnis voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.926621"], ["updated_at", "2020-04-23 16:31:01.926621"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:31:01 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 24ms (Views: 9.1ms | ActiveRecord: 0.4ms | Allocations: 6215)
+ [1m[35m (0.7ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quas"], ["description", "Repellendus illo aut vero."], ["created_at", "2020-04-23 16:31:01.985673"], ["updated_at", "2020-04-23 16:31:01.985673"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Provident delectus ipsam quam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.993289"], ["updated_at", "2020-04-23 16:31:01.993289"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quibusdam aut occaecati et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.995356"], ["updated_at", "2020-04-23 16:31:01.995356"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum sequi necessitatibus ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.997122"], ["updated_at", "2020-04-23 16:31:01.997122"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Asperiores ut quia ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:01.998978"], ["updated_at", "2020-04-23 16:31:01.998978"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nulla ut odio dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.001066"], ["updated_at", "2020-04-23 16:31:02.001066"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Praesentium nihil est quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.002998"], ["updated_at", "2020-04-23 16:31:02.002998"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis sit quas id?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.010214"], ["updated_at", "2020-04-23 16:31:02.010214"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis excepturi impedit modi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.014704"], ["updated_at", "2020-04-23 16:31:02.014704"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione reprehenderit qui libero?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.017109"], ["updated_at", "2020-04-23 16:31:02.017109"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel quisquam ipsam et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.020124"], ["updated_at", "2020-04-23 16:31:02.020124"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Illum vitae ut neque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.022272"], ["updated_at", "2020-04-23 16:31:02.022272"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquam possimus corporis quas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.025461"], ["updated_at", "2020-04-23 16:31:02.025461"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iste velit vel dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.028487"], ["updated_at", "2020-04-23 16:31:02.028487"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsa ea sint in?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.031107"], ["updated_at", "2020-04-23 16:31:02.031107"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officia sunt sint deleniti?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.033740"], ["updated_at", "2020-04-23 16:31:02.033740"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Harum autem ipsa maxime?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.036064"], ["updated_at", "2020-04-23 16:31:02.036064"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugiat culpa vel rem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.038281"], ["updated_at", "2020-04-23 16:31:02.038281"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui iusto laboriosam qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.040447"], ["updated_at", "2020-04-23 16:31:02.040447"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Beatae iure minus rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.042684"], ["updated_at", "2020-04-23 16:31:02.042684"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi quasi eveniet pariatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.044971"], ["updated_at", "2020-04-23 16:31:02.044971"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:31:02 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.3ms | Allocations: 4182)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (19.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Dicta eum reiciendis consequatur."], ["created_at", "2020-04-23 16:31:02.088915"], ["updated_at", "2020-04-23 16:31:02.088915"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores quisquam non eos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.094686"], ["updated_at", "2020-04-23 16:31:02.094686"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perspiciatis quia rerum recusandae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.097411"], ["updated_at", "2020-04-23 16:31:02.097411"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempore officiis id unde?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.099566"], ["updated_at", "2020-04-23 16:31:02.099566"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Distinctio non dolorem et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.101097"], ["updated_at", "2020-04-23 16:31:02.101097"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quidem molestiae autem ullam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.102579"], ["updated_at", "2020-04-23 16:31:02.102579"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto laboriosam commodi inventore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.104092"], ["updated_at", "2020-04-23 16:31:02.104092"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Harum dignissimos voluptatibus rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.108976"], ["updated_at", "2020-04-23 16:31:02.108976"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Praesentium beatae nostrum nemo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.111151"], ["updated_at", "2020-04-23 16:31:02.111151"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Placeat saepe ut autem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.112716"], ["updated_at", "2020-04-23 16:31:02.112716"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut assumenda quaerat officia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.114384"], ["updated_at", "2020-04-23 16:31:02.114384"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et eveniet voluptate quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.116067"], ["updated_at", "2020-04-23 16:31:02.116067"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id quidem dolores praesentium?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.117723"], ["updated_at", "2020-04-23 16:31:02.117723"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia ab in iusto?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.119439"], ["updated_at", "2020-04-23 16:31:02.119439"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus maxime ea dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.121156"], ["updated_at", "2020-04-23 16:31:02.121156"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ad ut vitae impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.122831"], ["updated_at", "2020-04-23 16:31:02.122831"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui et minima voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.125429"], ["updated_at", "2020-04-23 16:31:02.125429"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia omnis qui tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.128148"], ["updated_at", "2020-04-23 16:31:02.128148"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt nemo cupiditate reiciendis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.130189"], ["updated_at", "2020-04-23 16:31:02.130189"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Asperiores dolor magni maxime?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.132017"], ["updated_at", "2020-04-23 16:31:02.132017"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Natus perferendis repellendus eos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.133959"], ["updated_at", "2020-04-23 16:31:02.133959"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 13:31:02 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (10.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cum"], ["description", "Non quia qui ea."], ["created_at", "2020-04-23 16:31:02.147503"], ["updated_at", "2020-04-23 16:31:02.147503"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem illo laudantium error?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.160902"], ["updated_at", "2020-04-23 16:31:02.160902"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et cumque deserunt ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.162769"], ["updated_at", "2020-04-23 16:31:02.162769"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum similique laudantium non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.164448"], ["updated_at", "2020-04-23 16:31:02.164448"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et praesentium sit consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.166821"], ["updated_at", "2020-04-23 16:31:02.166821"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel repellendus voluptas officia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.169502"], ["updated_at", "2020-04-23 16:31:02.169502"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia tempora quia totam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.171220"], ["updated_at", "2020-04-23 16:31:02.171220"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime accusamus sequi consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.173689"], ["updated_at", "2020-04-23 16:31:02.173689"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores harum et tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.175610"], ["updated_at", "2020-04-23 16:31:02.175610"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur reiciendis consequuntur et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.177451"], ["updated_at", "2020-04-23 16:31:02.177451"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Hic sed sint est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.179121"], ["updated_at", "2020-04-23 16:31:02.179121"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos debitis asperiores laboriosam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.180745"], ["updated_at", "2020-04-23 16:31:02.180745"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Porro autem veniam quo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.182276"], ["updated_at", "2020-04-23 16:31:02.182276"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut ullam incidunt ducimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.183820"], ["updated_at", "2020-04-23 16:31:02.183820"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia placeat at impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.186047"], ["updated_at", "2020-04-23 16:31:02.186047"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione aut autem voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.188620"], ["updated_at", "2020-04-23 16:31:02.188620"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempore rerum debitis ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.190292"], ["updated_at", "2020-04-23 16:31:02.190292"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut ea vel voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.191841"], ["updated_at", "2020-04-23 16:31:02.191841"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum voluptatum harum non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.193396"], ["updated_at", "2020-04-23 16:31:02.193396"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut officia animi nobis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.195067"], ["updated_at", "2020-04-23 16:31:02.195067"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Architecto earum unde dolore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.196865"], ["updated_at", "2020-04-23 16:31:02.196865"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 13:31:02 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 211)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Voluptatum quod dignissimos ipsum."], ["created_at", "2020-04-23 16:31:02.213374"], ["updated_at", "2020-04-23 16:31:02.213374"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Placeat dolorem iure aliquid?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.217418"], ["updated_at", "2020-04-23 16:31:02.217418"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id consequatur odio alias?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.219432"], ["updated_at", "2020-04-23 16:31:02.219432"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odit aut consequatur reiciendis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.221115"], ["updated_at", "2020-04-23 16:31:02.221115"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia temporibus incidunt quam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.222806"], ["updated_at", "2020-04-23 16:31:02.222806"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum nihil quisquam enim?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.224294"], ["updated_at", "2020-04-23 16:31:02.224294"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.0ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est eius voluptatibus totam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.226624"], ["updated_at", "2020-04-23 16:31:02.226624"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsum sit magni nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.230397"], ["updated_at", "2020-04-23 16:31:02.230397"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores omnis fugit ab?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.232318"], ["updated_at", "2020-04-23 16:31:02.232318"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime autem et placeat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.233984"], ["updated_at", "2020-04-23 16:31:02.233984"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Delectus cumque laudantium et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.235601"], ["updated_at", "2020-04-23 16:31:02.235601"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non alias nam qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.237141"], ["updated_at", "2020-04-23 16:31:02.237141"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto ex et voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.239119"], ["updated_at", "2020-04-23 16:31:02.239119"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem sit eius ducimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.241194"], ["updated_at", "2020-04-23 16:31:02.241194"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Libero sit culpa voluptatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.242996"], ["updated_at", "2020-04-23 16:31:02.242996"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minus omnis quisquam consectetur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.244535"], ["updated_at", "2020-04-23 16:31:02.244535"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorum commodi quisquam dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.247183"], ["updated_at", "2020-04-23 16:31:02.247183"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quasi nobis omnis voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.249379"], ["updated_at", "2020-04-23 16:31:02.249379"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Magnam mollitia omnis cumque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.251041"], ["updated_at", "2020-04-23 16:31:02.251041"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem odio ipsa totam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.252675"], ["updated_at", "2020-04-23 16:31:02.252675"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Magnam vel possimus soluta?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.254490"], ["updated_at", "2020-04-23 16:31:02.254490"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:31:02 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 719)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (18.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "amet"], ["description", "Quod voluptatem odit excepturi."], ["created_at", "2020-04-23 16:31:02.281610"], ["updated_at", "2020-04-23 16:31:02.281610"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ullam ducimus eum et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.285193"], ["updated_at", "2020-04-23 16:31:02.285193"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eius autem enim voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.287940"], ["updated_at", "2020-04-23 16:31:02.287940"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cupiditate veritatis distinctio debitis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.290589"], ["updated_at", "2020-04-23 16:31:02.290589"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Explicabo aperiam aut saepe?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.292318"], ["updated_at", "2020-04-23 16:31:02.292318"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui magni cupiditate cumque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.293855"], ["updated_at", "2020-04-23 16:31:02.293855"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam dolorem rerum corrupti?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.295444"], ["updated_at", "2020-04-23 16:31:02.295444"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Temporibus illum est consectetur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.297800"], ["updated_at", "2020-04-23 16:31:02.297800"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Excepturi et quis quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.299689"], ["updated_at", "2020-04-23 16:31:02.299689"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos adipisci magnam et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.301671"], ["updated_at", "2020-04-23 16:31:02.301671"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum ullam suscipit sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.303503"], ["updated_at", "2020-04-23 16:31:02.303503"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut recusandae optio blanditiis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.305147"], ["updated_at", "2020-04-23 16:31:02.305147"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repudiandae eligendi repellendus cumque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.308465"], ["updated_at", "2020-04-23 16:31:02.308465"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui pariatur ut ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.311378"], ["updated_at", "2020-04-23 16:31:02.311378"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non a nulla eius?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.313384"], ["updated_at", "2020-04-23 16:31:02.313384"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eius atque vero repellendus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.314977"], ["updated_at", "2020-04-23 16:31:02.314977"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita accusamus odit laudantium?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.316552"], ["updated_at", "2020-04-23 16:31:02.316552"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam enim quasi beatae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.318180"], ["updated_at", "2020-04-23 16:31:02.318180"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum et excepturi necessitatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.319930"], ["updated_at", "2020-04-23 16:31:02.319930"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corporis tempora deserunt eius?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.321537"], ["updated_at", "2020-04-23 16:31:02.321537"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor neque odit odio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.323103"], ["updated_at", "2020-04-23 16:31:02.323103"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:31:02 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 690)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Itaque aut iste quis."], ["created_at", "2020-04-23 16:31:02.338645"], ["updated_at", "2020-04-23 16:31:02.338645"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Praesentium quisquam officia facilis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.343992"], ["updated_at", "2020-04-23 16:31:02.343992"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Illum sint numquam dolore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.346871"], ["updated_at", "2020-04-23 16:31:02.346871"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nesciunt dolorem sapiente et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.350668"], ["updated_at", "2020-04-23 16:31:02.350668"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestias et eum nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.353315"], ["updated_at", "2020-04-23 16:31:02.353315"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quidem nihil expedita incidunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.355008"], ["updated_at", "2020-04-23 16:31:02.355008"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Atque aut qui aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.357018"], ["updated_at", "2020-04-23 16:31:02.357018"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officiis quo quam nesciunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.359827"], ["updated_at", "2020-04-23 16:31:02.359827"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corporis illo error beatae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.362045"], ["updated_at", "2020-04-23 16:31:02.362045"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et perspiciatis et laboriosam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.364134"], ["updated_at", "2020-04-23 16:31:02.364134"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Esse dolorum nihil quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.366619"], ["updated_at", "2020-04-23 16:31:02.366619"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut et molestias veritatis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.369371"], ["updated_at", "2020-04-23 16:31:02.369371"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum quis numquam molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.371464"], ["updated_at", "2020-04-23 16:31:02.371464"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et velit sed molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.373555"], ["updated_at", "2020-04-23 16:31:02.373555"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint fugiat et dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.375524"], ["updated_at", "2020-04-23 16:31:02.375524"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui eveniet praesentium blanditiis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.377472"], ["updated_at", "2020-04-23 16:31:02.377472"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt itaque ipsum doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.379465"], ["updated_at", "2020-04-23 16:31:02.379465"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae omnis alias reprehenderit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.381633"], ["updated_at", "2020-04-23 16:31:02.381633"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Alias ut quisquam quae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.383870"], ["updated_at", "2020-04-23 16:31:02.383870"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Optio non ut quaerat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.386305"], ["updated_at", "2020-04-23 16:31:02.386305"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eaque in quia itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.389633"], ["updated_at", "2020-04-23 16:31:02.389633"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 13:31:02 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 583)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Nostrum amet adipisci nihil."], ["created_at", "2020-04-23 16:31:02.403861"], ["updated_at", "2020-04-23 16:31:02.403861"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat magni ut est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.408611"], ["updated_at", "2020-04-23 16:31:02.408611"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deleniti sed hic consectetur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.411811"], ["updated_at", "2020-04-23 16:31:02.411811"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia ea modi placeat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.413879"], ["updated_at", "2020-04-23 16:31:02.413879"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non ut sapiente assumenda?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.415690"], ["updated_at", "2020-04-23 16:31:02.415690"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellat in id eaque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.417501"], ["updated_at", "2020-04-23 16:31:02.417501"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quod sed minima exercitationem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.419648"], ["updated_at", "2020-04-23 16:31:02.419648"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel autem dolorum soluta?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.422460"], ["updated_at", "2020-04-23 16:31:02.422460"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et sint mollitia sapiente?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.424630"], ["updated_at", "2020-04-23 16:31:02.424630"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae sed rerum quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.427709"], ["updated_at", "2020-04-23 16:31:02.427709"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eaque expedita quos corrupti?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.431741"], ["updated_at", "2020-04-23 16:31:02.431741"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos expedita dolorum neque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.434659"], ["updated_at", "2020-04-23 16:31:02.434659"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Placeat quia possimus est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.437315"], ["updated_at", "2020-04-23 16:31:02.437315"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Alias numquam laboriosam hic?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.439548"], ["updated_at", "2020-04-23 16:31:02.439548"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem saepe corporis rem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.441481"], ["updated_at", "2020-04-23 16:31:02.441481"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error aspernatur aut id?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.443342"], ["updated_at", "2020-04-23 16:31:02.443342"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Delectus fugiat natus voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.445337"], ["updated_at", "2020-04-23 16:31:02.445337"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et dolorem nostrum quam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.447932"], ["updated_at", "2020-04-23 16:31:02.447932"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut repellat facere atque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.450453"], ["updated_at", "2020-04-23 16:31:02.450453"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et est libero consequuntur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.452481"], ["updated_at", "2020-04-23 16:31:02.452481"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor et voluptate iusto?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.454331"], ["updated_at", "2020-04-23 16:31:02.454331"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 13:31:02 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 566)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (10.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Consequatur sunt pariatur eum."], ["created_at", "2020-04-23 16:31:02.512409"], ["updated_at", "2020-04-23 16:31:02.512409"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non aut facilis aliquid?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.517852"], ["updated_at", "2020-04-23 16:31:02.517852"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Earum autem aut harum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.520175"], ["updated_at", "2020-04-23 16:31:02.520175"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam omnis odio culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.522049"], ["updated_at", "2020-04-23 16:31:02.522049"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat minus suscipit dolorum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.524673"], ["updated_at", "2020-04-23 16:31:02.524673"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem sed ducimus et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.527303"], ["updated_at", "2020-04-23 16:31:02.527303"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates cum vitae quod?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.531861"], ["updated_at", "2020-04-23 16:31:02.531861"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Modi veritatis ducimus enim?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.535087"], ["updated_at", "2020-04-23 16:31:02.535087"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit praesentium commodi saepe?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.537136"], ["updated_at", "2020-04-23 16:31:02.537136"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Adipisci consequatur voluptate veritatis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.539166"], ["updated_at", "2020-04-23 16:31:02.539166"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas id voluptate ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.541247"], ["updated_at", "2020-04-23 16:31:02.541247"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum eaque numquam maxime?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.543613"], ["updated_at", "2020-04-23 16:31:02.543613"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut necessitatibus possimus sit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.546201"], ["updated_at", "2020-04-23 16:31:02.546201"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Placeat at voluptate sapiente?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.549993"], ["updated_at", "2020-04-23 16:31:02.549993"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Assumenda dolor consequatur amet?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.552316"], ["updated_at", "2020-04-23 16:31:02.552316"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit a sequi quisquam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.554477"], ["updated_at", "2020-04-23 16:31:02.554477"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sapiente est blanditiis soluta?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.556358"], ["updated_at", "2020-04-23 16:31:02.556358"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officiis aut nobis suscipit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.558299"], ["updated_at", "2020-04-23 16:31:02.558299"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia commodi ut sint?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.560498"], ["updated_at", "2020-04-23 16:31:02.560498"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Possimus alias quidem tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.562415"], ["updated_at", "2020-04-23 16:31:02.562415"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Unde pariatur sequi quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.564270"], ["updated_at", "2020-04-23 16:31:02.564270"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:31:02 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"name"=>"Visit Narnia", "done"=>"false", "meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms | Allocations: 473)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Qui qui omnis nam."], ["created_at", "2020-04-23 16:31:02.593786"], ["updated_at", "2020-04-23 16:31:02.593786"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime eaque necessitatibus laborum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.598526"], ["updated_at", "2020-04-23 16:31:02.598526"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam et deserunt expedita?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.600704"], ["updated_at", "2020-04-23 16:31:02.600704"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed autem blanditiis ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.602664"], ["updated_at", "2020-04-23 16:31:02.602664"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deserunt ut enim velit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.604885"], ["updated_at", "2020-04-23 16:31:02.604885"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea aut eum consectetur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.606858"], ["updated_at", "2020-04-23 16:31:02.606858"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquam ducimus est praesentium?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.610898"], ["updated_at", "2020-04-23 16:31:02.610898"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos placeat eligendi tenetur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.614417"], ["updated_at", "2020-04-23 16:31:02.614417"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et ullam qui non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.616615"], ["updated_at", "2020-04-23 16:31:02.616615"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et nisi perferendis dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.618865"], ["updated_at", "2020-04-23 16:31:02.618865"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo voluptas perspiciatis fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.621039"], ["updated_at", "2020-04-23 16:31:02.621039"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam incidunt officia sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.623294"], ["updated_at", "2020-04-23 16:31:02.623294"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Itaque ad maxime vero?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.625794"], ["updated_at", "2020-04-23 16:31:02.625794"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facilis quia ipsam eos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.629589"], ["updated_at", "2020-04-23 16:31:02.629589"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Blanditiis est modi expedita?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.631803"], ["updated_at", "2020-04-23 16:31:02.631803"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel libero culpa possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.633934"], ["updated_at", "2020-04-23 16:31:02.633934"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error dolorem architecto fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.635928"], ["updated_at", "2020-04-23 16:31:02.635928"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In sit voluptas molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.638048"], ["updated_at", "2020-04-23 16:31:02.638048"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Modi quo quidem eveniet?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.639988"], ["updated_at", "2020-04-23 16:31:02.639988"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione similique dignissimos quod?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.642387"], ["updated_at", "2020-04-23 16:31:02.642387"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Animi esse distinctio cum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.644993"], ["updated_at", "2020-04-23 16:31:02.644993"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:31:02 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1131)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tempora"], ["description", "Maiores autem sequi cumque."], ["created_at", "2020-04-23 16:31:02.661627"], ["updated_at", "2020-04-23 16:31:02.661627"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis quibusdam ea vel?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.665773"], ["updated_at", "2020-04-23 16:31:02.665773"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione soluta voluptatem possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.668735"], ["updated_at", "2020-04-23 16:31:02.668735"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut autem dolor fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.672392"], ["updated_at", "2020-04-23 16:31:02.672392"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor natus qui quas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.674608"], ["updated_at", "2020-04-23 16:31:02.674608"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Incidunt explicabo ut inventore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.676738"], ["updated_at", "2020-04-23 16:31:02.676738"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Libero voluptatibus quisquam commodi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.678975"], ["updated_at", "2020-04-23 16:31:02.678975"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur quod veniam omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.681747"], ["updated_at", "2020-04-23 16:31:02.681747"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed consequatur at et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.683989"], ["updated_at", "2020-04-23 16:31:02.683989"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non et aut aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.686089"], ["updated_at", "2020-04-23 16:31:02.686089"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eveniet eos placeat a?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.688730"], ["updated_at", "2020-04-23 16:31:02.688730"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo illo culpa id?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.693001"], ["updated_at", "2020-04-23 16:31:02.693001"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ducimus numquam porro tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.695207"], ["updated_at", "2020-04-23 16:31:02.695207"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempore ut tenetur distinctio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.697170"], ["updated_at", "2020-04-23 16:31:02.697170"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Pariatur eum quo minus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.699278"], ["updated_at", "2020-04-23 16:31:02.699278"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et qui dolor rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.701212"], ["updated_at", "2020-04-23 16:31:02.701212"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil aperiam ab quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.703145"], ["updated_at", "2020-04-23 16:31:02.703145"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (18.6ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est quibusdam doloribus impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.723793"], ["updated_at", "2020-04-23 16:31:02.723793"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequuntur expedita quam repellendus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.726172"], ["updated_at", "2020-04-23 16:31:02.726172"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugit excepturi non impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.729146"], ["updated_at", "2020-04-23 16:31:02.729146"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit aut omnis eos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.732603"], ["updated_at", "2020-04-23 16:31:02.732603"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:31:02 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1110)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "alias"], ["description", "Ipsam dolorem at aut."], ["created_at", "2020-04-23 16:31:02.752967"], ["updated_at", "2020-04-23 16:31:02.752967"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores voluptatem assumenda quaerat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.760222"], ["updated_at", "2020-04-23 16:31:02.760222"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et voluptas eum magnam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.762643"], ["updated_at", "2020-04-23 16:31:02.762643"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vitae atque dignissimos harum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.764397"], ["updated_at", "2020-04-23 16:31:02.764397"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto sed aperiam sint?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.766167"], ["updated_at", "2020-04-23 16:31:02.766167"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut accusamus laboriosam accusantium?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.771651"], ["updated_at", "2020-04-23 16:31:02.771651"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit aut est deleniti?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.775720"], ["updated_at", "2020-04-23 16:31:02.775720"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis qui nostrum eligendi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.778658"], ["updated_at", "2020-04-23 16:31:02.778658"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores rerum nobis vel?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.780693"], ["updated_at", "2020-04-23 16:31:02.780693"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eveniet omnis et omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.782853"], ["updated_at", "2020-04-23 16:31:02.782853"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui atque voluptates similique?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.785956"], ["updated_at", "2020-04-23 16:31:02.785956"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum deleniti nisi ab?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.790001"], ["updated_at", "2020-04-23 16:31:02.790001"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut harum rem sequi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.792956"], ["updated_at", "2020-04-23 16:31:02.792956"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui autem expedita ea?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.795768"], ["updated_at", "2020-04-23 16:31:02.795768"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique id est rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.798805"], ["updated_at", "2020-04-23 16:31:02.798805"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est occaecati corrupti quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.801678"], ["updated_at", "2020-04-23 16:31:02.801678"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minima ut quia ex?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.804069"], ["updated_at", "2020-04-23 16:31:02.804069"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime consequatur aut officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.806007"], ["updated_at", "2020-04-23 16:31:02.806007"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aspernatur omnis ex distinctio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.807788"], ["updated_at", "2020-04-23 16:31:02.807788"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique necessitatibus rerum omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.811019"], ["updated_at", "2020-04-23 16:31:02.811019"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cupiditate error nulla magnam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.813314"], ["updated_at", "2020-04-23 16:31:02.813314"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:31:02 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"name"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms | Allocations: 719)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (44.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (7.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vero"], ["description", "Quo laborum tempora quia."], ["created_at", "2020-04-23 16:31:02.866493"], ["updated_at", "2020-04-23 16:31:02.866493"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quam velit nemo eos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.878628"], ["updated_at", "2020-04-23 16:31:02.878628"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil veniam eos qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.881927"], ["updated_at", "2020-04-23 16:31:02.881927"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique architecto qui atque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.885663"], ["updated_at", "2020-04-23 16:31:02.885663"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo vero aliquam nobis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.892126"], ["updated_at", "2020-04-23 16:31:02.892126"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus aut beatae in?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.895501"], ["updated_at", "2020-04-23 16:31:02.895501"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.9ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut excepturi occaecati quas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.898199"], ["updated_at", "2020-04-23 16:31:02.898199"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repudiandae dolores debitis numquam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.901302"], ["updated_at", "2020-04-23 16:31:02.901302"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nemo nisi dolores non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.903195"], ["updated_at", "2020-04-23 16:31:02.903195"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem dolorum quibusdam quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.904973"], ["updated_at", "2020-04-23 16:31:02.904973"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eveniet facilis dolorem ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.906591"], ["updated_at", "2020-04-23 16:31:02.906591"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veniam quos in eum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.908729"], ["updated_at", "2020-04-23 16:31:02.908729"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Suscipit id dolore quibusdam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.911400"], ["updated_at", "2020-04-23 16:31:02.911400"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Incidunt et beatae quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.913647"], ["updated_at", "2020-04-23 16:31:02.913647"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat ad ducimus quidem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.915529"], ["updated_at", "2020-04-23 16:31:02.915529"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas repellendus sit eaque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.917662"], ["updated_at", "2020-04-23 16:31:02.917662"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem voluptatem eum officia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.919665"], ["updated_at", "2020-04-23 16:31:02.919665"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus id modi voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.921496"], ["updated_at", "2020-04-23 16:31:02.921496"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Delectus qui vel commodi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.923677"], ["updated_at", "2020-04-23 16:31:02.923677"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deleniti alias dolorem tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.926479"], ["updated_at", "2020-04-23 16:31:02.926479"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ex ipsa quia voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.928989"], ["updated_at", "2020-04-23 16:31:02.928989"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:31:02 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"name"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms | Allocations: 718)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Eum modi dolor enim."], ["created_at", "2020-04-23 16:31:02.944888"], ["updated_at", "2020-04-23 16:31:02.944888"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta minus repudiandae non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.948857"], ["updated_at", "2020-04-23 16:31:02.948857"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error nisi non est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.953117"], ["updated_at", "2020-04-23 16:31:02.953117"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et eum eligendi aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.956211"], ["updated_at", "2020-04-23 16:31:02.956211"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae similique reiciendis ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.959088"], ["updated_at", "2020-04-23 16:31:02.959088"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis accusantium veritatis non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.961674"], ["updated_at", "2020-04-23 16:31:02.961674"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam mollitia nesciunt aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.965220"], ["updated_at", "2020-04-23 16:31:02.965220"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti aliquam id facere?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.968671"], ["updated_at", "2020-04-23 16:31:02.968671"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia ea illo corporis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.972762"], ["updated_at", "2020-04-23 16:31:02.972762"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis inventore quis voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.975633"], ["updated_at", "2020-04-23 16:31:02.975633"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit in hic doloremque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.977819"], ["updated_at", "2020-04-23 16:31:02.977819"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis qui sed hic?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.979711"], ["updated_at", "2020-04-23 16:31:02.979711"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et vero perferendis pariatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.981534"], ["updated_at", "2020-04-23 16:31:02.981534"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut blanditiis vel repellendus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.983210"], ["updated_at", "2020-04-23 16:31:02.983210"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Distinctio eveniet accusantium sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.985529"], ["updated_at", "2020-04-23 16:31:02.985529"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Amet eligendi aliquam perspiciatis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.988160"], ["updated_at", "2020-04-23 16:31:02.988160"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea quibusdam aliquam facere?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.990711"], ["updated_at", "2020-04-23 16:31:02.990711"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempore quis eos veritatis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.992983"], ["updated_at", "2020-04-23 16:31:02.992983"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti itaque dolorem nam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.995029"], ["updated_at", "2020-04-23 16:31:02.995029"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor tenetur veniam ipsum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.997074"], ["updated_at", "2020-04-23 16:31:02.997074"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsam asperiores molestiae velit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:02.999533"], ["updated_at", "2020-04-23 16:31:02.999533"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"name"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Esse non sint aliquam."], ["created_at", "2020-04-23 16:31:03.014741"], ["updated_at", "2020-04-23 16:31:03.014741"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis blanditiis voluptas dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.018592"], ["updated_at", "2020-04-23 16:31:03.018592"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique eius necessitatibus expedita?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.020684"], ["updated_at", "2020-04-23 16:31:03.020684"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Enim a ullam ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.022546"], ["updated_at", "2020-04-23 16:31:03.022546"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut adipisci eum quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.024675"], ["updated_at", "2020-04-23 16:31:03.024675"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatibus perferendis quia illo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.026645"], ["updated_at", "2020-04-23 16:31:03.026645"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.0ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non voluptas aut atque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.028944"], ["updated_at", "2020-04-23 16:31:03.028944"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum labore suscipit nulla?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.032701"], ["updated_at", "2020-04-23 16:31:03.032701"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Asperiores magni molestiae deserunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.035495"], ["updated_at", "2020-04-23 16:31:03.035495"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eaque et enim porro?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.037705"], ["updated_at", "2020-04-23 16:31:03.037705"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et itaque vel sapiente?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.039762"], ["updated_at", "2020-04-23 16:31:03.039762"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum magnam autem eum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.041533"], ["updated_at", "2020-04-23 16:31:03.041533"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est tempora quidem vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.043343"], ["updated_at", "2020-04-23 16:31:03.043343"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id est veniam tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.045289"], ["updated_at", "2020-04-23 16:31:03.045289"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam mollitia repudiandae similique?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.047319"], ["updated_at", "2020-04-23 16:31:03.047319"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloremque nihil ut similique?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.049873"], ["updated_at", "2020-04-23 16:31:03.049873"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsam adipisci sequi ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.053586"], ["updated_at", "2020-04-23 16:31:03.053586"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis qui est aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.055480"], ["updated_at", "2020-04-23 16:31:03.055480"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et ea dolores atque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.057741"], ["updated_at", "2020-04-23 16:31:03.057741"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam omnis nihil minima?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.059834"], ["updated_at", "2020-04-23 16:31:03.059834"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas qui quidem et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.062139"], ["updated_at", "2020-04-23 16:31:03.062139"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"name"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Vel laborum doloremque illo."], ["created_at", "2020-04-23 16:31:03.080328"], ["updated_at", "2020-04-23 16:31:03.080328"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Earum quis fuga mollitia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.084793"], ["updated_at", "2020-04-23 16:31:03.084793"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia mollitia omnis fugit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.087159"], ["updated_at", "2020-04-23 16:31:03.087159"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repudiandae id illum porro?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.090046"], ["updated_at", "2020-04-23 16:31:03.090046"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Temporibus eaque molestias officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.095708"], ["updated_at", "2020-04-23 16:31:03.095708"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non id temporibus cum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.098553"], ["updated_at", "2020-04-23 16:31:03.098553"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Numquam enim et reiciendis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.100355"], ["updated_at", "2020-04-23 16:31:03.100355"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Suscipit aut omnis dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.105225"], ["updated_at", "2020-04-23 16:31:03.105225"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit magnam voluptas maxime?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.108174"], ["updated_at", "2020-04-23 16:31:03.108174"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas asperiores esse accusantium?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.111535"], ["updated_at", "2020-04-23 16:31:03.111535"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo numquam id quam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.115582"], ["updated_at", "2020-04-23 16:31:03.115582"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui amet maxime beatae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.117692"], ["updated_at", "2020-04-23 16:31:03.117692"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quas maxime eum sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.119730"], ["updated_at", "2020-04-23 16:31:03.119730"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et rerum omnis consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.122272"], ["updated_at", "2020-04-23 16:31:03.122272"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione sed saepe laudantium?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.124752"], ["updated_at", "2020-04-23 16:31:03.124752"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur quia quia molestias?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.127194"], ["updated_at", "2020-04-23 16:31:03.127194"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellat sit ducimus ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.131604"], ["updated_at", "2020-04-23 16:31:03.131604"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Labore illo et asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.135035"], ["updated_at", "2020-04-23 16:31:03.135035"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odit est aperiam magnam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.137996"], ["updated_at", "2020-04-23 16:31:03.137996"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis saepe molestiae libero?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.140383"], ["updated_at", "2020-04-23 16:31:03.140383"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deleniti rerum suscipit nemo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:31:03.142654"], ["updated_at", "2020-04-23 16:31:03.142654"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetingsController#destroy as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Destroy (0.2ms)[0m [1m[31mDELETE FROM "meetings" WHERE "meetings"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 716)
+ [1m[35m (0.6ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (10.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Ea nisi consequatur animi."], ["created_at", "2020-04-23 16:31:03.162879"], ["updated_at", "2020-04-23 16:31:03.162879"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nam"], ["description", "Architecto corrupti voluptas doloribus."], ["created_at", "2020-04-23 16:31:03.169361"], ["updated_at", "2020-04-23 16:31:03.169361"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Quas quos facere aperiam."], ["created_at", "2020-04-23 16:31:03.175965"], ["updated_at", "2020-04-23 16:31:03.175965"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Et eos fuga optio."], ["created_at", "2020-04-23 16:31:03.178374"], ["updated_at", "2020-04-23 16:31:03.178374"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Aliquam doloremque hic ipsa."], ["created_at", "2020-04-23 16:31:03.180138"], ["updated_at", "2020-04-23 16:31:03.180138"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "velit"], ["description", "Reprehenderit molestiae tenetur nobis."], ["created_at", "2020-04-23 16:31:03.182225"], ["updated_at", "2020-04-23 16:31:03.182225"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "earum"], ["description", "Necessitatibus excepturi et dolorem."], ["created_at", "2020-04-23 16:31:03.183889"], ["updated_at", "2020-04-23 16:31:03.183889"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "hic"], ["description", "Voluptatem et veritatis laudantium."], ["created_at", "2020-04-23 16:31:03.185146"], ["updated_at", "2020-04-23 16:31:03.185146"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Hic odit voluptatem similique."], ["created_at", "2020-04-23 16:31:03.186396"], ["updated_at", "2020-04-23 16:31:03.186396"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Cupiditate maiores voluptates rem."], ["created_at", "2020-04-23 16:31:03.189682"], ["updated_at", "2020-04-23 16:31:03.189682"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.3ms | Allocations: 2234)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (41.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "neque"], ["description", "Nobis soluta nulla harum."], ["created_at", "2020-04-23 16:31:03.243980"], ["updated_at", "2020-04-23 16:31:03.243980"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Eius omnis voluptatem quasi."], ["created_at", "2020-04-23 16:31:03.248605"], ["updated_at", "2020-04-23 16:31:03.248605"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "enim"], ["description", "Animi asperiores sit voluptatem."], ["created_at", "2020-04-23 16:31:03.250623"], ["updated_at", "2020-04-23 16:31:03.250623"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "officia"], ["description", "Culpa eaque natus dolorem."], ["created_at", "2020-04-23 16:31:03.253300"], ["updated_at", "2020-04-23 16:31:03.253300"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Voluptas velit voluptatem optio."], ["created_at", "2020-04-23 16:31:03.255112"], ["updated_at", "2020-04-23 16:31:03.255112"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ea"], ["description", "Corrupti eaque quia aut."], ["created_at", "2020-04-23 16:31:03.258345"], ["updated_at", "2020-04-23 16:31:03.258345"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Dolorum quae itaque culpa."], ["created_at", "2020-04-23 16:31:03.260512"], ["updated_at", "2020-04-23 16:31:03.260512"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Expedita consequuntur cum et."], ["created_at", "2020-04-23 16:31:03.262195"], ["updated_at", "2020-04-23 16:31:03.262195"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "In recusandae iure officia."], ["created_at", "2020-04-23 16:31:03.263522"], ["updated_at", "2020-04-23 16:31:03.263522"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Velit quo a facilis."], ["created_at", "2020-04-23 16:31:03.265467"], ["updated_at", "2020-04-23 16:31:03.265467"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2168)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (35.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Non ea maiores omnis."], ["created_at", "2020-04-23 16:31:03.312209"], ["updated_at", "2020-04-23 16:31:03.312209"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illum"], ["description", "Quaerat ipsam corporis repellat."], ["created_at", "2020-04-23 16:31:03.318622"], ["updated_at", "2020-04-23 16:31:03.318622"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Hic sunt nihil harum."], ["created_at", "2020-04-23 16:31:03.321114"], ["updated_at", "2020-04-23 16:31:03.321114"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Sit voluptatem occaecati molestiae."], ["created_at", "2020-04-23 16:31:03.322815"], ["updated_at", "2020-04-23 16:31:03.322815"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "officia"], ["description", "Explicabo repudiandae modi eum."], ["created_at", "2020-04-23 16:31:03.324108"], ["updated_at", "2020-04-23 16:31:03.324108"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quam"], ["description", "Dolorem dolor esse quis."], ["created_at", "2020-04-23 16:31:03.325558"], ["updated_at", "2020-04-23 16:31:03.325558"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Quasi non non vel."], ["created_at", "2020-04-23 16:31:03.327005"], ["updated_at", "2020-04-23 16:31:03.327005"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Commodi qui quibusdam voluptatibus."], ["created_at", "2020-04-23 16:31:03.328685"], ["updated_at", "2020-04-23 16:31:03.328685"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cum"], ["description", "Non repellendus in velit."], ["created_at", "2020-04-23 16:31:03.330074"], ["updated_at", "2020-04-23 16:31:03.330074"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Accusamus sed aut sit."], ["created_at", "2020-04-23 16:31:03.333103"], ["updated_at", "2020-04-23 16:31:03.333103"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 392)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Esse vel sit accusamus."], ["created_at", "2020-04-23 16:31:03.352846"], ["updated_at", "2020-04-23 16:31:03.352846"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "libero"], ["description", "Consectetur corporis eveniet reiciendis."], ["created_at", "2020-04-23 16:31:03.359096"], ["updated_at", "2020-04-23 16:31:03.359096"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Voluptatem vel voluptate aut."], ["created_at", "2020-04-23 16:31:03.361234"], ["updated_at", "2020-04-23 16:31:03.361234"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Ex mollitia hic commodi."], ["created_at", "2020-04-23 16:31:03.363044"], ["updated_at", "2020-04-23 16:31:03.363044"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Soluta explicabo perferendis aut."], ["created_at", "2020-04-23 16:31:03.364496"], ["updated_at", "2020-04-23 16:31:03.364496"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Voluptatem dolorem eaque rerum."], ["created_at", "2020-04-23 16:31:03.366122"], ["updated_at", "2020-04-23 16:31:03.366122"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Enim voluptas ut et."], ["created_at", "2020-04-23 16:31:03.367806"], ["updated_at", "2020-04-23 16:31:03.367806"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Debitis dolorem asperiores officia."], ["created_at", "2020-04-23 16:31:03.369818"], ["updated_at", "2020-04-23 16:31:03.369818"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Tempora officiis aut deleniti."], ["created_at", "2020-04-23 16:31:03.371635"], ["updated_at", "2020-04-23 16:31:03.371635"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "minus"], ["description", "Voluptatibus aut ea laudantium."], ["created_at", "2020-04-23 16:31:03.376885"], ["updated_at", "2020-04-23 16:31:03.376885"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 392)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Et dicta aut voluptas."], ["created_at", "2020-04-23 16:31:03.391869"], ["updated_at", "2020-04-23 16:31:03.391869"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Eveniet accusamus laborum neque."], ["created_at", "2020-04-23 16:31:03.398372"], ["updated_at", "2020-04-23 16:31:03.398372"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "unde"], ["description", "Optio eius veniam illum."], ["created_at", "2020-04-23 16:31:03.400508"], ["updated_at", "2020-04-23 16:31:03.400508"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Qui nam animi et."], ["created_at", "2020-04-23 16:31:03.401892"], ["updated_at", "2020-04-23 16:31:03.401892"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Quo totam unde aut."], ["created_at", "2020-04-23 16:31:03.403404"], ["updated_at", "2020-04-23 16:31:03.403404"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "magni"], ["description", "Modi natus ad aut."], ["created_at", "2020-04-23 16:31:03.405895"], ["updated_at", "2020-04-23 16:31:03.405895"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Blanditiis quia aut sunt."], ["created_at", "2020-04-23 16:31:03.408022"], ["updated_at", "2020-04-23 16:31:03.408022"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ipsam"], ["description", "Eos ut sunt quisquam."], ["created_at", "2020-04-23 16:31:03.410146"], ["updated_at", "2020-04-23 16:31:03.410146"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Recusandae sed molestias architecto."], ["created_at", "2020-04-23 16:31:03.411677"], ["updated_at", "2020-04-23 16:31:03.411677"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Ipsa possimus cupiditate sint."], ["created_at", "2020-04-23 16:31:03.416242"], ["updated_at", "2020-04-23 16:31:03.416242"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quam"], ["description", "Laboriosam consectetur et accusantium."], ["created_at", "2020-04-23 16:31:03.431090"], ["updated_at", "2020-04-23 16:31:03.431090"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nam"], ["description", "Aut officiis atque impedit."], ["created_at", "2020-04-23 16:31:03.436532"], ["updated_at", "2020-04-23 16:31:03.436532"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "totam"], ["description", "Voluptatibus vel ut architecto."], ["created_at", "2020-04-23 16:31:03.438933"], ["updated_at", "2020-04-23 16:31:03.438933"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "Cumque recusandae alias commodi."], ["created_at", "2020-04-23 16:31:03.440250"], ["updated_at", "2020-04-23 16:31:03.440250"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "velit"], ["description", "Harum aperiam quia est."], ["created_at", "2020-04-23 16:31:03.441420"], ["updated_at", "2020-04-23 16:31:03.441420"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Fuga iure qui asperiores."], ["created_at", "2020-04-23 16:31:03.442656"], ["updated_at", "2020-04-23 16:31:03.442656"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Odit rem qui deleniti."], ["created_at", "2020-04-23 16:31:03.443779"], ["updated_at", "2020-04-23 16:31:03.443779"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Et quisquam eos voluptates."], ["created_at", "2020-04-23 16:31:03.444882"], ["updated_at", "2020-04-23 16:31:03.444882"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Magni quia eum earum."], ["created_at", "2020-04-23 16:31:03.445985"], ["updated_at", "2020-04-23 16:31:03.445985"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Eveniet aliquam sapiente voluptatem."], ["created_at", "2020-04-23 16:31:03.447960"], ["updated_at", "2020-04-23 16:31:03.447960"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Corrupti non fugit facere."], ["created_at", "2020-04-23 16:31:03.460774"], ["updated_at", "2020-04-23 16:31:03.460774"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Vero ab non inventore."], ["created_at", "2020-04-23 16:31:03.463254"], ["updated_at", "2020-04-23 16:31:03.463254"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Dignissimos et velit veniam."], ["created_at", "2020-04-23 16:31:03.464457"], ["updated_at", "2020-04-23 16:31:03.464457"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Et ut nostrum odit."], ["created_at", "2020-04-23 16:31:03.465533"], ["updated_at", "2020-04-23 16:31:03.465533"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Praesentium odit voluptatibus illum."], ["created_at", "2020-04-23 16:31:03.466705"], ["updated_at", "2020-04-23 16:31:03.466705"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vero"], ["description", "Quibusdam laboriosam nulla sunt."], ["created_at", "2020-04-23 16:31:03.468073"], ["updated_at", "2020-04-23 16:31:03.468073"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Fuga officia repellendus quia."], ["created_at", "2020-04-23 16:31:03.469305"], ["updated_at", "2020-04-23 16:31:03.469305"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quas"], ["description", "Totam inventore quasi at."], ["created_at", "2020-04-23 16:31:03.470394"], ["updated_at", "2020-04-23 16:31:03.470394"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Blanditiis et libero voluptas."], ["created_at", "2020-04-23 16:31:03.471467"], ["updated_at", "2020-04-23 16:31:03.471467"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "alias"], ["description", "Tempore ex sed vel."], ["created_at", "2020-04-23 16:31:03.474346"], ["updated_at", "2020-04-23 16:31:03.474346"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 16:31:03.477998"], ["updated_at", "2020-04-23 16:31:03.477998"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 2ms (Views: 0.4ms | ActiveRecord: 0.4ms | Allocations: 731)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "laboriosam"], ["description", "Nam quaerat asperiores cumque."], ["created_at", "2020-04-23 16:31:03.489597"], ["updated_at", "2020-04-23 16:31:03.489597"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "atque"], ["description", "Dolor illo quia rerum."], ["created_at", "2020-04-23 16:31:03.492613"], ["updated_at", "2020-04-23 16:31:03.492613"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Corrupti sed eum amet."], ["created_at", "2020-04-23 16:31:03.494484"], ["updated_at", "2020-04-23 16:31:03.494484"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Corrupti aspernatur qui eveniet."], ["created_at", "2020-04-23 16:31:03.496371"], ["updated_at", "2020-04-23 16:31:03.496371"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "optio"], ["description", "Omnis tenetur eum maxime."], ["created_at", "2020-04-23 16:31:03.498167"], ["updated_at", "2020-04-23 16:31:03.498167"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Voluptatem minima nisi eos."], ["created_at", "2020-04-23 16:31:03.499771"], ["updated_at", "2020-04-23 16:31:03.499771"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "at"], ["description", "Aliquid blanditiis numquam quidem."], ["created_at", "2020-04-23 16:31:03.501343"], ["updated_at", "2020-04-23 16:31:03.501343"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "doloribus"], ["description", "Officiis est alias molestiae."], ["created_at", "2020-04-23 16:31:03.502842"], ["updated_at", "2020-04-23 16:31:03.502842"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Ea facilis aspernatur magnam."], ["created_at", "2020-04-23 16:31:03.504424"], ["updated_at", "2020-04-23 16:31:03.504424"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "velit"], ["description", "Magni officiis aut non."], ["created_at", "2020-04-23 16:31:03.506367"], ["updated_at", "2020-04-23 16:31:03.506367"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 16:31:03.509649"], ["updated_at", "2020-04-23 16:31:03.509649"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 2ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 730)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Vel perferendis iure non."], ["created_at", "2020-04-23 16:31:03.522736"], ["updated_at", "2020-04-23 16:31:03.522736"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Quia et ducimus ipsa."], ["created_at", "2020-04-23 16:31:03.525457"], ["updated_at", "2020-04-23 16:31:03.525457"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Fugit esse et optio."], ["created_at", "2020-04-23 16:31:03.526746"], ["updated_at", "2020-04-23 16:31:03.526746"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Aut earum quia est."], ["created_at", "2020-04-23 16:31:03.528036"], ["updated_at", "2020-04-23 16:31:03.528036"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Libero enim voluptatem perspiciatis."], ["created_at", "2020-04-23 16:31:03.529189"], ["updated_at", "2020-04-23 16:31:03.529189"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eos"], ["description", "Voluptatem beatae et in."], ["created_at", "2020-04-23 16:31:03.530375"], ["updated_at", "2020-04-23 16:31:03.530375"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "atque"], ["description", "Earum aperiam dolor accusamus."], ["created_at", "2020-04-23 16:31:03.531490"], ["updated_at", "2020-04-23 16:31:03.531490"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Quas ut nisi voluptatem."], ["created_at", "2020-04-23 16:31:03.532754"], ["updated_at", "2020-04-23 16:31:03.532754"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Maiores aperiam quia cupiditate."], ["created_at", "2020-04-23 16:31:03.534377"], ["updated_at", "2020-04-23 16:31:03.534377"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Aperiam magnam consequatur quisquam."], ["created_at", "2020-04-23 16:31:03.537100"], ["updated_at", "2020-04-23 16:31:03.537100"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 853)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "modi"], ["description", "Ea odit quia deleniti."], ["created_at", "2020-04-23 16:31:03.549643"], ["updated_at", "2020-04-23 16:31:03.549643"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "officia"], ["description", "Voluptatibus dicta ex suscipit."], ["created_at", "2020-04-23 16:31:03.552640"], ["updated_at", "2020-04-23 16:31:03.552640"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Repellat labore sit sit."], ["created_at", "2020-04-23 16:31:03.554577"], ["updated_at", "2020-04-23 16:31:03.554577"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Consequatur quisquam in quas."], ["created_at", "2020-04-23 16:31:03.556386"], ["updated_at", "2020-04-23 16:31:03.556386"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Odit molestiae tenetur similique."], ["created_at", "2020-04-23 16:31:03.558520"], ["updated_at", "2020-04-23 16:31:03.558520"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vel"], ["description", "Ex earum voluptas accusantium."], ["created_at", "2020-04-23 16:31:03.559758"], ["updated_at", "2020-04-23 16:31:03.559758"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Sequi ullam officiis sed."], ["created_at", "2020-04-23 16:31:03.560918"], ["updated_at", "2020-04-23 16:31:03.560918"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Temporibus voluptatibus sit ut."], ["created_at", "2020-04-23 16:31:03.562124"], ["updated_at", "2020-04-23 16:31:03.562124"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "totam"], ["description", "Dolores quia impedit occaecati."], ["created_at", "2020-04-23 16:31:03.563333"], ["updated_at", "2020-04-23 16:31:03.563333"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Alias est ut exercitationem."], ["created_at", "2020-04-23 16:31:03.565219"], ["updated_at", "2020-04-23 16:31:03.565219"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 853)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Saepe ut dolorum magni."], ["created_at", "2020-04-23 16:31:03.578618"], ["updated_at", "2020-04-23 16:31:03.578618"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Iure voluptate nisi impedit."], ["created_at", "2020-04-23 16:31:03.581442"], ["updated_at", "2020-04-23 16:31:03.581442"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Consequuntur et impedit aperiam."], ["created_at", "2020-04-23 16:31:03.582730"], ["updated_at", "2020-04-23 16:31:03.582730"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Mollitia ad dolorem perspiciatis."], ["created_at", "2020-04-23 16:31:03.583878"], ["updated_at", "2020-04-23 16:31:03.583878"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Voluptatum mollitia voluptatem aut."], ["created_at", "2020-04-23 16:31:03.585005"], ["updated_at", "2020-04-23 16:31:03.585005"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Rerum cumque voluptatem aut."], ["created_at", "2020-04-23 16:31:03.586081"], ["updated_at", "2020-04-23 16:31:03.586081"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Veritatis nostrum voluptas optio."], ["created_at", "2020-04-23 16:31:03.587228"], ["updated_at", "2020-04-23 16:31:03.587228"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Perferendis distinctio non quod."], ["created_at", "2020-04-23 16:31:03.588547"], ["updated_at", "2020-04-23 16:31:03.588547"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Nostrum aut qui sint."], ["created_at", "2020-04-23 16:31:03.589869"], ["updated_at", "2020-04-23 16:31:03.589869"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Ut aut dolorem ea."], ["created_at", "2020-04-23 16:31:03.591736"], ["updated_at", "2020-04-23 16:31:03.591736"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.3ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 16:31:03.595967"], ["id", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.6ms | Allocations: 763)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Non quod nemo voluptatem."], ["created_at", "2020-04-23 16:31:03.606910"], ["updated_at", "2020-04-23 16:31:03.606910"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Iste repellat et quia."], ["created_at", "2020-04-23 16:31:03.611259"], ["updated_at", "2020-04-23 16:31:03.611259"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Qui laudantium porro excepturi."], ["created_at", "2020-04-23 16:31:03.612686"], ["updated_at", "2020-04-23 16:31:03.612686"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "at"], ["description", "Reprehenderit omnis perferendis quidem."], ["created_at", "2020-04-23 16:31:03.614215"], ["updated_at", "2020-04-23 16:31:03.614215"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Quisquam sequi voluptas rerum."], ["created_at", "2020-04-23 16:31:03.616120"], ["updated_at", "2020-04-23 16:31:03.616120"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Inventore nesciunt qui vero."], ["created_at", "2020-04-23 16:31:03.618305"], ["updated_at", "2020-04-23 16:31:03.618305"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Ipsam corrupti ea ratione."], ["created_at", "2020-04-23 16:31:03.619510"], ["updated_at", "2020-04-23 16:31:03.619510"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Nesciunt eaque esse aliquid."], ["created_at", "2020-04-23 16:31:03.620658"], ["updated_at", "2020-04-23 16:31:03.620658"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Aut qui quia sunt."], ["created_at", "2020-04-23 16:31:03.621870"], ["updated_at", "2020-04-23 16:31:03.621870"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Perferendis tempore aspernatur occaecati."], ["created_at", "2020-04-23 16:31:03.623723"], ["updated_at", "2020-04-23 16:31:03.623723"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 16:31:03.626883"], ["id", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 706)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eius"], ["description", "Sit ducimus velit accusamus."], ["created_at", "2020-04-23 16:31:03.639560"], ["updated_at", "2020-04-23 16:31:03.639560"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Tempora voluptas deserunt magni."], ["created_at", "2020-04-23 16:31:03.642407"], ["updated_at", "2020-04-23 16:31:03.642407"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Quia voluptas ut earum."], ["created_at", "2020-04-23 16:31:03.643757"], ["updated_at", "2020-04-23 16:31:03.643757"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Consectetur voluptatem voluptatibus odio."], ["created_at", "2020-04-23 16:31:03.644947"], ["updated_at", "2020-04-23 16:31:03.644947"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Architecto id nam quae."], ["created_at", "2020-04-23 16:31:03.646242"], ["updated_at", "2020-04-23 16:31:03.646242"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eos"], ["description", "Explicabo rerum adipisci dolores."], ["created_at", "2020-04-23 16:31:03.647495"], ["updated_at", "2020-04-23 16:31:03.647495"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quae"], ["description", "Deleniti quisquam unde aperiam."], ["created_at", "2020-04-23 16:31:03.648721"], ["updated_at", "2020-04-23 16:31:03.648721"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Necessitatibus adipisci nam consectetur."], ["created_at", "2020-04-23 16:31:03.649885"], ["updated_at", "2020-04-23 16:31:03.649885"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "esse"], ["description", "Alias nemo ipsum rerum."], ["created_at", "2020-04-23 16:31:03.651112"], ["updated_at", "2020-04-23 16:31:03.651112"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Rerum et nisi nulla."], ["created_at", "2020-04-23 16:31:03.652904"], ["updated_at", "2020-04-23 16:31:03.652904"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-04-23 13:31:03 -0300
+Processing by MeetsController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mMeet Destroy (0.2ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 599)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (143.8ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (106.0ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Aut dignissimos fugiat quia."], ["created_at", "2020-04-23 16:34:49.572136"], ["updated_at", "2020-04-23 16:34:49.572136"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique delectus in tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.588052"], ["updated_at", "2020-04-23 16:34:49.588052"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minus iste nam aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.590000"], ["updated_at", "2020-04-23 16:34:49.590000"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tenetur aut placeat blanditiis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.591618"], ["updated_at", "2020-04-23 16:34:49.591618"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit odit eos repudiandae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.593068"], ["updated_at", "2020-04-23 16:34:49.593068"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam veniam laudantium amet?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.594496"], ["updated_at", "2020-04-23 16:34:49.594496"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deserunt aut consectetur quo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.596345"], ["updated_at", "2020-04-23 16:34:49.596345"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sequi consequuntur quo incidunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.598677"], ["updated_at", "2020-04-23 16:34:49.598677"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloremque sint reiciendis rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.600307"], ["updated_at", "2020-04-23 16:34:49.600307"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aspernatur molestiae nisi delectus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.601887"], ["updated_at", "2020-04-23 16:34:49.601887"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officiis nihil asperiores numquam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.603404"], ["updated_at", "2020-04-23 16:34:49.603404"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsa quas incidunt et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.604909"], ["updated_at", "2020-04-23 16:34:49.604909"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deserunt sint magni corrupti?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.606601"], ["updated_at", "2020-04-23 16:34:49.606601"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorum impedit velit dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.608123"], ["updated_at", "2020-04-23 16:34:49.608123"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos in sed itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.610139"], ["updated_at", "2020-04-23 16:34:49.610139"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id reprehenderit quam cumque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.611773"], ["updated_at", "2020-04-23 16:34:49.611773"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reprehenderit corrupti fugit delectus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.613321"], ["updated_at", "2020-04-23 16:34:49.613321"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Optio officiis cupiditate alias?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.614804"], ["updated_at", "2020-04-23 16:34:49.614804"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odit voluptatibus voluptas laborum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.617079"], ["updated_at", "2020-04-23 16:34:49.617079"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat laudantium non aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.618887"], ["updated_at", "2020-04-23 16:34:49.618887"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Distinctio aut et ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.620443"], ["updated_at", "2020-04-23 16:34:49.620443"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:34:49 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 21ms (Views: 7.6ms | ActiveRecord: 0.3ms | Allocations: 6219)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cum"], ["description", "Tenetur quo aut ut."], ["created_at", "2020-04-23 16:34:49.670152"], ["updated_at", "2020-04-23 16:34:49.670152"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis ut atque exercitationem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.674557"], ["updated_at", "2020-04-23 16:34:49.674557"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam consequatur numquam voluptatum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.677105"], ["updated_at", "2020-04-23 16:34:49.677105"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vitae et non minus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.678921"], ["updated_at", "2020-04-23 16:34:49.678921"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Suscipit consectetur voluptatum nobis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.680735"], ["updated_at", "2020-04-23 16:34:49.680735"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In beatae aut ipsam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.683295"], ["updated_at", "2020-04-23 16:34:49.683295"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut et nobis illo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.684975"], ["updated_at", "2020-04-23 16:34:49.684975"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia architecto est nam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.687493"], ["updated_at", "2020-04-23 16:34:49.687493"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nobis alias iusto deleniti?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.689146"], ["updated_at", "2020-04-23 16:34:49.689146"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut modi aut occaecati?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.690798"], ["updated_at", "2020-04-23 16:34:49.690798"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed ut eaque maiores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.692583"], ["updated_at", "2020-04-23 16:34:49.692583"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Neque consequatur omnis ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.694247"], ["updated_at", "2020-04-23 16:34:49.694247"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor minus in animi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.695878"], ["updated_at", "2020-04-23 16:34:49.695878"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non dolore et consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.698209"], ["updated_at", "2020-04-23 16:34:49.698209"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rem nulla incidunt optio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.699999"], ["updated_at", "2020-04-23 16:34:49.699999"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Culpa excepturi distinctio et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.701552"], ["updated_at", "2020-04-23 16:34:49.701552"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error tempore consequatur provident?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.703079"], ["updated_at", "2020-04-23 16:34:49.703079"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit laborum explicabo iusto?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.704580"], ["updated_at", "2020-04-23 16:34:49.704580"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Explicabo esse sit voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.706418"], ["updated_at", "2020-04-23 16:34:49.706418"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempora qui dolores molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.708042"], ["updated_at", "2020-04-23 16:34:49.708042"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum et quo quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.709544"], ["updated_at", "2020-04-23 16:34:49.709544"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:34:49 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.2ms | Allocations: 4183)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Quidem tempore sunt rerum."], ["created_at", "2020-04-23 16:34:49.732166"], ["updated_at", "2020-04-23 16:34:49.732166"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat est molestiae aliquid?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.736147"], ["updated_at", "2020-04-23 16:34:49.736147"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Libero consectetur saepe voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.738694"], ["updated_at", "2020-04-23 16:34:49.738694"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Pariatur ducimus itaque eveniet?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.741300"], ["updated_at", "2020-04-23 16:34:49.741300"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem consequatur dolores molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.743114"], ["updated_at", "2020-04-23 16:34:49.743114"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto excepturi nostrum dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.744727"], ["updated_at", "2020-04-23 16:34:49.744727"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eveniet molestiae maxime qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.746424"], ["updated_at", "2020-04-23 16:34:49.746424"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt eum natus nam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.748647"], ["updated_at", "2020-04-23 16:34:49.748647"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis nobis earum perferendis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.750263"], ["updated_at", "2020-04-23 16:34:49.750263"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Enim tenetur nihil nesciunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.751762"], ["updated_at", "2020-04-23 16:34:49.751762"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum beatae ex odio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.753252"], ["updated_at", "2020-04-23 16:34:49.753252"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dignissimos quidem vel adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.754791"], ["updated_at", "2020-04-23 16:34:49.754791"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum cum qui voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.756477"], ["updated_at", "2020-04-23 16:34:49.756477"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aperiam consequatur et eum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.759650"], ["updated_at", "2020-04-23 16:34:49.759650"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Distinctio nesciunt omnis voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.762804"], ["updated_at", "2020-04-23 16:34:49.762804"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui explicabo qui at?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.764500"], ["updated_at", "2020-04-23 16:34:49.764500"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia amet eos optio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.766159"], ["updated_at", "2020-04-23 16:34:49.766159"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores qui quia ab?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.767834"], ["updated_at", "2020-04-23 16:34:49.767834"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nemo quos ea occaecati?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.769430"], ["updated_at", "2020-04-23 16:34:49.769430"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt temporibus delectus accusamus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.770943"], ["updated_at", "2020-04-23 16:34:49.770943"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel et quisquam in?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.772485"], ["updated_at", "2020-04-23 16:34:49.772485"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 13:34:49 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (25.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Perferendis architecto dolores minus."], ["created_at", "2020-04-23 16:34:49.804082"], ["updated_at", "2020-04-23 16:34:49.804082"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id quo debitis quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.807716"], ["updated_at", "2020-04-23 16:34:49.807716"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui aut hic nisi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.809581"], ["updated_at", "2020-04-23 16:34:49.809581"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eius magnam itaque nulla?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.811134"], ["updated_at", "2020-04-23 16:34:49.811134"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Saepe voluptatem dolorem eum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.812927"], ["updated_at", "2020-04-23 16:34:49.812927"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel labore accusantium vero?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.814493"], ["updated_at", "2020-04-23 16:34:49.814493"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.9ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt provident ullam quas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.816082"], ["updated_at", "2020-04-23 16:34:49.816082"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et dolor quasi quo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.819795"], ["updated_at", "2020-04-23 16:34:49.819795"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia aliquid velit sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.822375"], ["updated_at", "2020-04-23 16:34:49.822375"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum aut dolorem possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.824022"], ["updated_at", "2020-04-23 16:34:49.824022"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia et id non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.825876"], ["updated_at", "2020-04-23 16:34:49.825876"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo placeat ea quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.827612"], ["updated_at", "2020-04-23 16:34:49.827612"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error et quasi dolorum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.829233"], ["updated_at", "2020-04-23 16:34:49.829233"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto dignissimos repudiandae id?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.830840"], ["updated_at", "2020-04-23 16:34:49.830840"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "A reprehenderit laborum fuga?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.832526"], ["updated_at", "2020-04-23 16:34:49.832526"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Optio saepe repellendus sint?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.834067"], ["updated_at", "2020-04-23 16:34:49.834067"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eius sunt blanditiis quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.835663"], ["updated_at", "2020-04-23 16:34:49.835663"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sequi eum autem qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.837491"], ["updated_at", "2020-04-23 16:34:49.837491"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsa voluptatem assumenda qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.839403"], ["updated_at", "2020-04-23 16:34:49.839403"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Excepturi qui sed quo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.841063"], ["updated_at", "2020-04-23 16:34:49.841063"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit eligendi blanditiis sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.842641"], ["updated_at", "2020-04-23 16:34:49.842641"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 13:34:49 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 211)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ex"], ["description", "Natus commodi illo inventore."], ["created_at", "2020-04-23 16:34:49.858469"], ["updated_at", "2020-04-23 16:34:49.858469"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quisquam et quis sit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.862070"], ["updated_at", "2020-04-23 16:34:49.862070"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Assumenda ipsum quasi quae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.863839"], ["updated_at", "2020-04-23 16:34:49.863839"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusantium impedit voluptatem architecto?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.865365"], ["updated_at", "2020-04-23 16:34:49.865365"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maiores dicta qui facere?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.867064"], ["updated_at", "2020-04-23 16:34:49.867064"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi molestias quaerat tenetur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.868628"], ["updated_at", "2020-04-23 16:34:49.868628"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam explicabo repellat voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.870134"], ["updated_at", "2020-04-23 16:34:49.870134"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Inventore odio doloribus nesciunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.872448"], ["updated_at", "2020-04-23 16:34:49.872448"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eveniet vero laborum odio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.874096"], ["updated_at", "2020-04-23 16:34:49.874096"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil omnis explicabo officia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.875787"], ["updated_at", "2020-04-23 16:34:49.875787"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloremque voluptate facere voluptatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.877542"], ["updated_at", "2020-04-23 16:34:49.877542"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nemo eaque ea laboriosam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.880062"], ["updated_at", "2020-04-23 16:34:49.880062"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut ad facere quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.882565"], ["updated_at", "2020-04-23 16:34:49.882565"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Inventore neque autem et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.884174"], ["updated_at", "2020-04-23 16:34:49.884174"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est mollitia quibusdam earum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.885816"], ["updated_at", "2020-04-23 16:34:49.885816"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt quae et asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.887468"], ["updated_at", "2020-04-23 16:34:49.887468"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem a dicta ullam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.888997"], ["updated_at", "2020-04-23 16:34:49.888997"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia dicta nisi recusandae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.890528"], ["updated_at", "2020-04-23 16:34:49.890528"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ad incidunt accusantium molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.892138"], ["updated_at", "2020-04-23 16:34:49.892138"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatum asperiores provident et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.893872"], ["updated_at", "2020-04-23 16:34:49.893872"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut sequi quo officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.895571"], ["updated_at", "2020-04-23 16:34:49.895571"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:34:49 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 718)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Qui ut voluptatem fugit."], ["created_at", "2020-04-23 16:34:49.909034"], ["updated_at", "2020-04-23 16:34:49.909034"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut qui ut maiores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.912885"], ["updated_at", "2020-04-23 16:34:49.912885"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Blanditiis et sit voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.915596"], ["updated_at", "2020-04-23 16:34:49.915596"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nesciunt suscipit magnam cum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.917562"], ["updated_at", "2020-04-23 16:34:49.917562"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Porro consequatur quae vel?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.919888"], ["updated_at", "2020-04-23 16:34:49.919888"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Inventore doloribus sequi beatae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.922409"], ["updated_at", "2020-04-23 16:34:49.922409"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto quasi et qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.924313"], ["updated_at", "2020-04-23 16:34:49.924313"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In dolor dolor repellat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.926952"], ["updated_at", "2020-04-23 16:34:49.926952"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum perspiciatis fugit officia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.928682"], ["updated_at", "2020-04-23 16:34:49.928682"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Amet veniam recusandae fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.930304"], ["updated_at", "2020-04-23 16:34:49.930304"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Modi sed inventore totam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.931797"], ["updated_at", "2020-04-23 16:34:49.931797"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit consequuntur ea ipsum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.933523"], ["updated_at", "2020-04-23 16:34:49.933523"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Earum ea enim nulla?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.935170"], ["updated_at", "2020-04-23 16:34:49.935170"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et dolorem rerum nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.936857"], ["updated_at", "2020-04-23 16:34:49.936857"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est accusantium deleniti ipsam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.938742"], ["updated_at", "2020-04-23 16:34:49.938742"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et nesciunt qui rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.940404"], ["updated_at", "2020-04-23 16:34:49.940404"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia magnam quae totam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.941987"], ["updated_at", "2020-04-23 16:34:49.941987"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laborum cumque minus quas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.943774"], ["updated_at", "2020-04-23 16:34:49.943774"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut itaque debitis magni?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.945426"], ["updated_at", "2020-04-23 16:34:49.945426"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et perspiciatis vel beatae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.947148"], ["updated_at", "2020-04-23 16:34:49.947148"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eius laudantium excepturi inventore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.948642"], ["updated_at", "2020-04-23 16:34:49.948642"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:34:49 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms | Allocations: 690)
+ [1m[35m (0.9ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (24.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Beatae ea odio aspernatur."], ["created_at", "2020-04-23 16:34:49.983620"], ["updated_at", "2020-04-23 16:34:49.983620"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est aut vel accusamus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.988848"], ["updated_at", "2020-04-23 16:34:49.988848"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum aspernatur hic officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.991187"], ["updated_at", "2020-04-23 16:34:49.991187"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas praesentium accusamus illum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.993126"], ["updated_at", "2020-04-23 16:34:49.993126"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem debitis optio non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.995141"], ["updated_at", "2020-04-23 16:34:49.995141"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis ipsam perferendis enim?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:49.998129"], ["updated_at", "2020-04-23 16:34:49.998129"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.9ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloremque repudiandae fuga et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.001599"], ["updated_at", "2020-04-23 16:34:50.001599"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat velit ut voluptatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.005142"], ["updated_at", "2020-04-23 16:34:50.005142"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit neque culpa et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.007481"], ["updated_at", "2020-04-23 16:34:50.007481"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rem fugiat iure quidem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.009620"], ["updated_at", "2020-04-23 16:34:50.009620"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos placeat sint qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.011801"], ["updated_at", "2020-04-23 16:34:50.011801"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repudiandae placeat rerum qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.013867"], ["updated_at", "2020-04-23 16:34:50.013867"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellat nisi dolores consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.016055"], ["updated_at", "2020-04-23 16:34:50.016055"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum sit corporis culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.018582"], ["updated_at", "2020-04-23 16:34:50.018582"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas quaerat excepturi et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.020912"], ["updated_at", "2020-04-23 16:34:50.020912"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem iusto quia voluptatum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.022938"], ["updated_at", "2020-04-23 16:34:50.022938"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati facere ex sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.025238"], ["updated_at", "2020-04-23 16:34:50.025238"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veniam dolor sint corrupti?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.027488"], ["updated_at", "2020-04-23 16:34:50.027488"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Incidunt officia rem ducimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.029737"], ["updated_at", "2020-04-23 16:34:50.029737"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id est molestias ad?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.031849"], ["updated_at", "2020-04-23 16:34:50.031849"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Hic enim expedita laborum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.033897"], ["updated_at", "2020-04-23 16:34:50.033897"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 583)
+ [1m[35m (0.6ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (11.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Ipsam dignissimos dolor et."], ["created_at", "2020-04-23 16:34:50.055993"], ["updated_at", "2020-04-23 16:34:50.055993"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Esse debitis enim possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.062911"], ["updated_at", "2020-04-23 16:34:50.062911"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perspiciatis doloremque voluptatibus occaecati?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.067573"], ["updated_at", "2020-04-23 16:34:50.067573"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quas sapiente ea et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.071134"], ["updated_at", "2020-04-23 16:34:50.071134"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati saepe ipsum nobis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.072940"], ["updated_at", "2020-04-23 16:34:50.072940"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Beatae qui qui deserunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.074655"], ["updated_at", "2020-04-23 16:34:50.074655"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tenetur delectus sit consequuntur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.076290"], ["updated_at", "2020-04-23 16:34:50.076290"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt dignissimos vel molestias?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.079011"], ["updated_at", "2020-04-23 16:34:50.079011"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempora culpa non est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.082317"], ["updated_at", "2020-04-23 16:34:50.082317"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Neque ratione magnam doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.084357"], ["updated_at", "2020-04-23 16:34:50.084357"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ex rerum est quos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.086190"], ["updated_at", "2020-04-23 16:34:50.086190"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae et expedita recusandae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.088046"], ["updated_at", "2020-04-23 16:34:50.088046"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta ut et quam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.089620"], ["updated_at", "2020-04-23 16:34:50.089620"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corporis cupiditate aperiam rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.091288"], ["updated_at", "2020-04-23 16:34:50.091288"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugiat voluptas vitae saepe?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.092907"], ["updated_at", "2020-04-23 16:34:50.092907"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum dolor quo laborum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.094560"], ["updated_at", "2020-04-23 16:34:50.094560"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloremque inventore est adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.096261"], ["updated_at", "2020-04-23 16:34:50.096261"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minus voluptatum magni error?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.098019"], ["updated_at", "2020-04-23 16:34:50.098019"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut asperiores ipsam distinctio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.100145"], ["updated_at", "2020-04-23 16:34:50.100145"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Architecto et illo ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.101900"], ["updated_at", "2020-04-23 16:34:50.101900"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur omnis voluptatibus voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.103578"], ["updated_at", "2020-04-23 16:34:50.103578"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 566)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vel"], ["description", "Impedit tempore voluptatum tenetur."], ["created_at", "2020-04-23 16:34:50.144102"], ["updated_at", "2020-04-23 16:34:50.144102"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Recusandae ratione atque consequuntur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.148220"], ["updated_at", "2020-04-23 16:34:50.148220"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil magni ut voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.151174"], ["updated_at", "2020-04-23 16:34:50.151174"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum ipsa adipisci rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.152918"], ["updated_at", "2020-04-23 16:34:50.152918"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Asperiores rerum non in?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.154454"], ["updated_at", "2020-04-23 16:34:50.154454"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel quis ducimus ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.156052"], ["updated_at", "2020-04-23 16:34:50.156052"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Natus a sapiente qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.157618"], ["updated_at", "2020-04-23 16:34:50.157618"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem odio modi doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.160631"], ["updated_at", "2020-04-23 16:34:50.160631"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum possimus illum eum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.163393"], ["updated_at", "2020-04-23 16:34:50.163393"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id ipsam perferendis sapiente?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.165430"], ["updated_at", "2020-04-23 16:34:50.165430"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odio minima illo fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.167433"], ["updated_at", "2020-04-23 16:34:50.167433"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut accusamus eos id?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.169197"], ["updated_at", "2020-04-23 16:34:50.169197"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem quia quibusdam exercitationem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.170920"], ["updated_at", "2020-04-23 16:34:50.170920"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aperiam voluptate pariatur cum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.172517"], ["updated_at", "2020-04-23 16:34:50.172517"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cumque iure quos voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.174091"], ["updated_at", "2020-04-23 16:34:50.174091"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos nihil odio quibusdam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.175831"], ["updated_at", "2020-04-23 16:34:50.175831"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia porro itaque aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.177601"], ["updated_at", "2020-04-23 16:34:50.177601"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia eos veritatis est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.179511"], ["updated_at", "2020-04-23 16:34:50.179511"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iure libero nihil quaerat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.181512"], ["updated_at", "2020-04-23 16:34:50.181512"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit maxime ut harum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.183190"], ["updated_at", "2020-04-23 16:34:50.183190"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui deleniti nesciunt tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.184732"], ["updated_at", "2020-04-23 16:34:50.184732"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"title"=>"Visit Narnia", "description"=>"false", "meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Visit Narnia"], ["description", "false"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.204151"], ["updated_at", "2020-04-23 16:34:50.204151"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 4ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1095)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "provident"], ["description", "Ut magnam commodi quia."], ["created_at", "2020-04-23 16:34:50.216808"], ["updated_at", "2020-04-23 16:34:50.216808"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum sed odit autem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.220401"], ["updated_at", "2020-04-23 16:34:50.220401"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea dicta deserunt consequuntur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.222999"], ["updated_at", "2020-04-23 16:34:50.222999"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil quibusdam reiciendis molestias?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.225044"], ["updated_at", "2020-04-23 16:34:50.225044"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est quia natus voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.226700"], ["updated_at", "2020-04-23 16:34:50.226700"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Harum quis eos iusto?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.228354"], ["updated_at", "2020-04-23 16:34:50.228354"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt cum odio asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.229887"], ["updated_at", "2020-04-23 16:34:50.229887"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nesciunt ipsam qui ea?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.232120"], ["updated_at", "2020-04-23 16:34:50.232120"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis magni dolor sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.233808"], ["updated_at", "2020-04-23 16:34:50.233808"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Placeat ullam amet velit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.235808"], ["updated_at", "2020-04-23 16:34:50.235808"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Adipisci culpa id omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.237823"], ["updated_at", "2020-04-23 16:34:50.237823"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Amet non ipsum in?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.239609"], ["updated_at", "2020-04-23 16:34:50.239609"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis iusto commodi libero?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.242321"], ["updated_at", "2020-04-23 16:34:50.242321"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis accusantium minima eum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.244861"], ["updated_at", "2020-04-23 16:34:50.244861"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut atque ipsum saepe?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.246505"], ["updated_at", "2020-04-23 16:34:50.246505"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cum et asperiores ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.248169"], ["updated_at", "2020-04-23 16:34:50.248169"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Explicabo dolores possimus provident?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.249711"], ["updated_at", "2020-04-23 16:34:50.249711"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Alias officiis totam ullam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.251256"], ["updated_at", "2020-04-23 16:34:50.251256"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Labore earum ea dignissimos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.252950"], ["updated_at", "2020-04-23 16:34:50.252950"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequuntur non qui amet?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.254495"], ["updated_at", "2020-04-23 16:34:50.254495"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur nihil unde facere?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.256037"], ["updated_at", "2020-04-23 16:34:50.256037"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1131)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Magni eum quia culpa."], ["created_at", "2020-04-23 16:34:50.268784"], ["updated_at", "2020-04-23 16:34:50.268784"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae id velit consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.273009"], ["updated_at", "2020-04-23 16:34:50.273009"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut tempora eos possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.275197"], ["updated_at", "2020-04-23 16:34:50.275197"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ullam et ipsa inventore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.277186"], ["updated_at", "2020-04-23 16:34:50.277186"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Commodi voluptate tenetur nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.279080"], ["updated_at", "2020-04-23 16:34:50.279080"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam aliquam voluptates est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.281823"], ["updated_at", "2020-04-23 16:34:50.281823"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel id qui quo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.284361"], ["updated_at", "2020-04-23 16:34:50.284361"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deserunt adipisci consequuntur dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.287088"], ["updated_at", "2020-04-23 16:34:50.287088"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem vitae nihil non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.288877"], ["updated_at", "2020-04-23 16:34:50.288877"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Inventore quae rerum et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.290621"], ["updated_at", "2020-04-23 16:34:50.290621"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quas iure commodi soluta?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.292229"], ["updated_at", "2020-04-23 16:34:50.292229"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas eaque possimus dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.293828"], ["updated_at", "2020-04-23 16:34:50.293828"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem culpa alias hic?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.295448"], ["updated_at", "2020-04-23 16:34:50.295448"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates in quos quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.297128"], ["updated_at", "2020-04-23 16:34:50.297128"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reiciendis harum dolor libero?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.298703"], ["updated_at", "2020-04-23 16:34:50.298703"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus ut eius necessitatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.317729"], ["updated_at", "2020-04-23 16:34:50.317729"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia ratione ad qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.320266"], ["updated_at", "2020-04-23 16:34:50.320266"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut aut ut provident?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.322633"], ["updated_at", "2020-04-23 16:34:50.322633"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quisquam vel voluptate ipsam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.324431"], ["updated_at", "2020-04-23 16:34:50.324431"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem harum delectus reprehenderit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.326250"], ["updated_at", "2020-04-23 16:34:50.326250"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nemo quae fuga quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.328021"], ["updated_at", "2020-04-23 16:34:50.328021"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1110)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illum"], ["description", "Aut cum voluptas sed."], ["created_at", "2020-04-23 16:34:50.342137"], ["updated_at", "2020-04-23 16:34:50.342137"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officia quia vel voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.346660"], ["updated_at", "2020-04-23 16:34:50.346660"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut sunt eius voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.348626"], ["updated_at", "2020-04-23 16:34:50.348626"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nam modi molestiae fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.350381"], ["updated_at", "2020-04-23 16:34:50.350381"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempore debitis provident sit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.351928"], ["updated_at", "2020-04-23 16:34:50.351928"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Praesentium magnam repellendus natus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.353549"], ["updated_at", "2020-04-23 16:34:50.353549"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati neque ipsa sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.355081"], ["updated_at", "2020-04-23 16:34:50.355081"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Harum aliquam error autem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.357598"], ["updated_at", "2020-04-23 16:34:50.357598"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Blanditiis consequatur sed eos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.359601"], ["updated_at", "2020-04-23 16:34:50.359601"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati commodi consequatur vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.362812"], ["updated_at", "2020-04-23 16:34:50.362812"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui non accusantium repellat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.365441"], ["updated_at", "2020-04-23 16:34:50.365441"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et animi quidem dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.367618"], ["updated_at", "2020-04-23 16:34:50.367618"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Amet asperiores et laboriosam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.369299"], ["updated_at", "2020-04-23 16:34:50.369299"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odio ut enim doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.370880"], ["updated_at", "2020-04-23 16:34:50.370880"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem mollitia sed officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.372396"], ["updated_at", "2020-04-23 16:34:50.372396"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officia pariatur totam id?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.373963"], ["updated_at", "2020-04-23 16:34:50.373963"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed amet fugiat id?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.375524"], ["updated_at", "2020-04-23 16:34:50.375524"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Blanditiis eaque ut et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.377177"], ["updated_at", "2020-04-23 16:34:50.377177"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est id odio rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.378805"], ["updated_at", "2020-04-23 16:34:50.378805"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Alias asperiores distinctio laudantium?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.380508"], ["updated_at", "2020-04-23 16:34:50.380508"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sapiente facilis voluptate ipsam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.382270"], ["updated_at", "2020-04-23 16:34:50.382270"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Update (0.1ms)[0m [1m[33mUPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ?[0m [["title", "Mozart"], ["updated_at", "2020-04-23 16:34:50.385758"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.3ms | Allocations: 1041)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Eligendi aut quasi eaque."], ["created_at", "2020-04-23 16:34:50.396965"], ["updated_at", "2020-04-23 16:34:50.396965"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates quos et omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.401904"], ["updated_at", "2020-04-23 16:34:50.401904"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos ut quasi quas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.404396"], ["updated_at", "2020-04-23 16:34:50.404396"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam rerum nam vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.406071"], ["updated_at", "2020-04-23 16:34:50.406071"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil officiis animi possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.407673"], ["updated_at", "2020-04-23 16:34:50.407673"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempora quos magni sit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.409191"], ["updated_at", "2020-04-23 16:34:50.409191"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis quas ut id?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.410722"], ["updated_at", "2020-04-23 16:34:50.410722"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis qui ut dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.412977"], ["updated_at", "2020-04-23 16:34:50.412977"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corporis illum natus consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.414638"], ["updated_at", "2020-04-23 16:34:50.414638"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel in velit suscipit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.416308"], ["updated_at", "2020-04-23 16:34:50.416308"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Saepe nihil labore dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.417886"], ["updated_at", "2020-04-23 16:34:50.417886"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed possimus enim vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.419416"], ["updated_at", "2020-04-23 16:34:50.419416"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Beatae consequatur ex adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.421420"], ["updated_at", "2020-04-23 16:34:50.421420"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur mollitia praesentium ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.424005"], ["updated_at", "2020-04-23 16:34:50.424005"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt et deleniti sapiente?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.426247"], ["updated_at", "2020-04-23 16:34:50.426247"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatibus veniam quia possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.427969"], ["updated_at", "2020-04-23 16:34:50.427969"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "At nostrum nulla voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.429579"], ["updated_at", "2020-04-23 16:34:50.429579"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores ullam ut ab?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.431158"], ["updated_at", "2020-04-23 16:34:50.431158"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis repellat modi cum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.432796"], ["updated_at", "2020-04-23 16:34:50.432796"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vitae et et est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.434250"], ["updated_at", "2020-04-23 16:34:50.434250"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corporis voluptatibus nihil nobis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.435773"], ["updated_at", "2020-04-23 16:34:50.435773"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Update (0.1ms)[0m [1m[33mUPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ?[0m [["title", "Mozart"], ["updated_at", "2020-04-23 16:34:50.439256"], ["id", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.3ms | Allocations: 996)
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Eos quasi quia est."], ["created_at", "2020-04-23 16:34:50.451237"], ["updated_at", "2020-04-23 16:34:50.451237"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nesciunt totam ipsum quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.455063"], ["updated_at", "2020-04-23 16:34:50.455063"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum necessitatibus omnis at?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.457709"], ["updated_at", "2020-04-23 16:34:50.457709"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Inventore et totam nemo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.459340"], ["updated_at", "2020-04-23 16:34:50.459340"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Temporibus atque quibusdam omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.461066"], ["updated_at", "2020-04-23 16:34:50.461066"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis nobis labore quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.463789"], ["updated_at", "2020-04-23 16:34:50.463789"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia expedita similique dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.466212"], ["updated_at", "2020-04-23 16:34:50.466212"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ad maxime consequatur et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.468743"], ["updated_at", "2020-04-23 16:34:50.468743"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur recusandae porro distinctio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.470392"], ["updated_at", "2020-04-23 16:34:50.470392"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquid id officiis et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.471982"], ["updated_at", "2020-04-23 16:34:50.471982"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut quo omnis corrupti?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.473587"], ["updated_at", "2020-04-23 16:34:50.473587"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et reprehenderit a qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.475119"], ["updated_at", "2020-04-23 16:34:50.475119"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sapiente iusto tempora voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.476711"], ["updated_at", "2020-04-23 16:34:50.476711"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Exercitationem voluptas ut unde?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.478179"], ["updated_at", "2020-04-23 16:34:50.478179"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores voluptatem exercitationem hic?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.479648"], ["updated_at", "2020-04-23 16:34:50.479648"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quidem voluptatem voluptas ex?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.481362"], ["updated_at", "2020-04-23 16:34:50.481362"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vero labore voluptatem dolorum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.483037"], ["updated_at", "2020-04-23 16:34:50.483037"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Enim voluptatibus commodi vel?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.484879"], ["updated_at", "2020-04-23 16:34:50.484879"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis unde laudantium quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.486683"], ["updated_at", "2020-04-23 16:34:50.486683"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis ut qui explicabo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.488703"], ["updated_at", "2020-04-23 16:34:50.488703"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut magni quo eaque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.490705"], ["updated_at", "2020-04-23 16:34:50.490705"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "Eligendi animi optio rerum."], ["created_at", "2020-04-23 16:34:50.504303"], ["updated_at", "2020-04-23 16:34:50.504303"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est quo minima nulla?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.507981"], ["updated_at", "2020-04-23 16:34:50.507981"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consectetur harum assumenda aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.509683"], ["updated_at", "2020-04-23 16:34:50.509683"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officiis quas aperiam et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.511173"], ["updated_at", "2020-04-23 16:34:50.511173"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugiat enim asperiores enim?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.512648"], ["updated_at", "2020-04-23 16:34:50.512648"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt eos est rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.514102"], ["updated_at", "2020-04-23 16:34:50.514102"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae facilis quia nulla?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.515580"], ["updated_at", "2020-04-23 16:34:50.515580"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia doloribus vel ipsum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.517876"], ["updated_at", "2020-04-23 16:34:50.517876"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil aspernatur est impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.519500"], ["updated_at", "2020-04-23 16:34:50.519500"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloribus provident nulla magni?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.521107"], ["updated_at", "2020-04-23 16:34:50.521107"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corporis error tenetur vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.523074"], ["updated_at", "2020-04-23 16:34:50.523074"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aperiam eaque soluta deleniti?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.525559"], ["updated_at", "2020-04-23 16:34:50.525559"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non magni sit suscipit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.527679"], ["updated_at", "2020-04-23 16:34:50.527679"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Temporibus ad nihil sit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.529415"], ["updated_at", "2020-04-23 16:34:50.529415"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Architecto fuga sed distinctio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.530957"], ["updated_at", "2020-04-23 16:34:50.530957"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus commodi vitae modi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.532468"], ["updated_at", "2020-04-23 16:34:50.532468"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officia possimus eum nisi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.533929"], ["updated_at", "2020-04-23 16:34:50.533929"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut totam quae modi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.535452"], ["updated_at", "2020-04-23 16:34:50.535452"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempora et blanditiis odio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.537199"], ["updated_at", "2020-04-23 16:34:50.537199"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam quaerat soluta repudiandae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.538824"], ["updated_at", "2020-04-23 16:34:50.538824"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia fugiat unde qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.540643"], ["updated_at", "2020-04-23 16:34:50.540643"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Nesciunt beatae et commodi."], ["created_at", "2020-04-23 16:34:50.555325"], ["updated_at", "2020-04-23 16:34:50.555325"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempora sit molestiae iure?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.559725"], ["updated_at", "2020-04-23 16:34:50.559725"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corporis et laborum accusantium?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.561816"], ["updated_at", "2020-04-23 16:34:50.561816"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos quasi dicta sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.563691"], ["updated_at", "2020-04-23 16:34:50.563691"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deleniti error autem nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.565519"], ["updated_at", "2020-04-23 16:34:50.565519"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis necessitatibus nesciunt et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.568271"], ["updated_at", "2020-04-23 16:34:50.568271"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus deserunt similique nulla?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.570121"], ["updated_at", "2020-04-23 16:34:50.570121"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos delectus velit porro?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.572401"], ["updated_at", "2020-04-23 16:34:50.572401"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui incidunt quaerat debitis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.574648"], ["updated_at", "2020-04-23 16:34:50.574648"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo totam quis sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.576896"], ["updated_at", "2020-04-23 16:34:50.576896"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perspiciatis sequi dolor est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.578802"], ["updated_at", "2020-04-23 16:34:50.578802"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non vitae quod et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.580683"], ["updated_at", "2020-04-23 16:34:50.580683"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Praesentium dolor explicabo impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.582970"], ["updated_at", "2020-04-23 16:34:50.582970"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem enim eligendi veritatis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.585042"], ["updated_at", "2020-04-23 16:34:50.585042"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reprehenderit sint omnis eum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.586832"], ["updated_at", "2020-04-23 16:34:50.586832"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Unde non aut qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.588478"], ["updated_at", "2020-04-23 16:34:50.588478"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Beatae in sed autem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.590017"], ["updated_at", "2020-04-23 16:34:50.590017"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut laborum voluptas placeat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.591603"], ["updated_at", "2020-04-23 16:34:50.591603"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugiat et iure qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.593234"], ["updated_at", "2020-04-23 16:34:50.593234"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non nihil occaecati iste?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.595014"], ["updated_at", "2020-04-23 16:34:50.595014"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cumque accusamus non rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:34:50.596769"], ["updated_at", "2020-04-23 16:34:50.596769"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetingsController#destroy as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Destroy (0.1ms)[0m [1m[31mDELETE FROM "meetings" WHERE "meetings"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 710)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tempore"], ["description", "Ratione praesentium eligendi accusantium."], ["created_at", "2020-04-23 16:34:50.610828"], ["updated_at", "2020-04-23 16:34:50.610828"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "velit"], ["description", "Tempore laboriosam et voluptatem."], ["created_at", "2020-04-23 16:34:50.615242"], ["updated_at", "2020-04-23 16:34:50.615242"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Sit nihil enim est."], ["created_at", "2020-04-23 16:34:50.617895"], ["updated_at", "2020-04-23 16:34:50.617895"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Tempora et qui fugit."], ["created_at", "2020-04-23 16:34:50.620241"], ["updated_at", "2020-04-23 16:34:50.620241"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Magnam laudantium quia ut."], ["created_at", "2020-04-23 16:34:50.622820"], ["updated_at", "2020-04-23 16:34:50.622820"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Praesentium non quia similique."], ["created_at", "2020-04-23 16:34:50.626083"], ["updated_at", "2020-04-23 16:34:50.626083"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Voluptatem amet sapiente aut."], ["created_at", "2020-04-23 16:34:50.629560"], ["updated_at", "2020-04-23 16:34:50.629560"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Molestiae ad qui explicabo."], ["created_at", "2020-04-23 16:34:50.632075"], ["updated_at", "2020-04-23 16:34:50.632075"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Est esse impedit quo."], ["created_at", "2020-04-23 16:34:50.634343"], ["updated_at", "2020-04-23 16:34:50.634343"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "provident"], ["description", "Quisquam ut explicabo quae."], ["created_at", "2020-04-23 16:34:50.637889"], ["updated_at", "2020-04-23 16:34:50.637889"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms | Allocations: 2225)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quod"], ["description", "Rerum debitis voluptatem et."], ["created_at", "2020-04-23 16:34:50.659975"], ["updated_at", "2020-04-23 16:34:50.659975"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nam"], ["description", "Veniam et ipsam voluptatem."], ["created_at", "2020-04-23 16:34:50.664331"], ["updated_at", "2020-04-23 16:34:50.664331"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quo"], ["description", "Maxime nihil nihil consequatur."], ["created_at", "2020-04-23 16:34:50.666750"], ["updated_at", "2020-04-23 16:34:50.666750"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Eligendi et consequatur nemo."], ["created_at", "2020-04-23 16:34:50.668534"], ["updated_at", "2020-04-23 16:34:50.668534"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Dolorem exercitationem modi odit."], ["created_at", "2020-04-23 16:34:50.670152"], ["updated_at", "2020-04-23 16:34:50.670152"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Aliquid ducimus sunt ut."], ["created_at", "2020-04-23 16:34:50.671762"], ["updated_at", "2020-04-23 16:34:50.671762"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Perferendis adipisci natus est."], ["created_at", "2020-04-23 16:34:50.673337"], ["updated_at", "2020-04-23 16:34:50.673337"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Laudantium deserunt ut debitis."], ["created_at", "2020-04-23 16:34:50.674926"], ["updated_at", "2020-04-23 16:34:50.674926"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "at"], ["description", "Et odit ut qui."], ["created_at", "2020-04-23 16:34:50.676478"], ["updated_at", "2020-04-23 16:34:50.676478"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Autem aut saepe quibusdam."], ["created_at", "2020-04-23 16:34:50.678863"], ["updated_at", "2020-04-23 16:34:50.678863"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.2ms | Allocations: 2168)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "neque"], ["description", "Qui doloremque est saepe."], ["created_at", "2020-04-23 16:34:50.700264"], ["updated_at", "2020-04-23 16:34:50.700264"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Qui unde perferendis facilis."], ["created_at", "2020-04-23 16:34:50.704699"], ["updated_at", "2020-04-23 16:34:50.704699"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Quis dolorem incidunt aperiam."], ["created_at", "2020-04-23 16:34:50.707385"], ["updated_at", "2020-04-23 16:34:50.707385"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sint"], ["description", "Neque minus qui iusto."], ["created_at", "2020-04-23 16:34:50.709347"], ["updated_at", "2020-04-23 16:34:50.709347"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vel"], ["description", "Corrupti blanditiis aut enim."], ["created_at", "2020-04-23 16:34:50.710928"], ["updated_at", "2020-04-23 16:34:50.710928"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tempore"], ["description", "Eos fugit soluta quod."], ["created_at", "2020-04-23 16:34:50.712535"], ["updated_at", "2020-04-23 16:34:50.712535"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Corrupti quo aut quam."], ["created_at", "2020-04-23 16:34:50.714142"], ["updated_at", "2020-04-23 16:34:50.714142"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "magni"], ["description", "Iste fuga laborum quas."], ["created_at", "2020-04-23 16:34:50.715721"], ["updated_at", "2020-04-23 16:34:50.715721"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Odit dolorum dolor officia."], ["created_at", "2020-04-23 16:34:50.717312"], ["updated_at", "2020-04-23 16:34:50.717312"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Tempore dolores ab quas."], ["created_at", "2020-04-23 16:34:50.719644"], ["updated_at", "2020-04-23 16:34:50.719644"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 393)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sint"], ["description", "Nihil enim dolores necessitatibus."], ["created_at", "2020-04-23 16:34:50.735642"], ["updated_at", "2020-04-23 16:34:50.735642"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quo"], ["description", "Autem eaque quibusdam culpa."], ["created_at", "2020-04-23 16:34:50.738652"], ["updated_at", "2020-04-23 16:34:50.738652"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Numquam sint aperiam aspernatur."], ["created_at", "2020-04-23 16:34:50.739993"], ["updated_at", "2020-04-23 16:34:50.739993"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Ab sed commodi culpa."], ["created_at", "2020-04-23 16:34:50.741201"], ["updated_at", "2020-04-23 16:34:50.741201"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Veniam non id voluptatem."], ["created_at", "2020-04-23 16:34:50.742548"], ["updated_at", "2020-04-23 16:34:50.742548"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quo"], ["description", "Nisi atque rem porro."], ["created_at", "2020-04-23 16:34:50.746163"], ["updated_at", "2020-04-23 16:34:50.746163"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Dolorum numquam nemo itaque."], ["created_at", "2020-04-23 16:34:50.747759"], ["updated_at", "2020-04-23 16:34:50.747759"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quo"], ["description", "Tempora veniam cum voluptatem."], ["created_at", "2020-04-23 16:34:50.748954"], ["updated_at", "2020-04-23 16:34:50.748954"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tempore"], ["description", "Quia aliquid facere sapiente."], ["created_at", "2020-04-23 16:34:50.750109"], ["updated_at", "2020-04-23 16:34:50.750109"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Quia tenetur error voluptas."], ["created_at", "2020-04-23 16:34:50.751849"], ["updated_at", "2020-04-23 16:34:50.751849"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 393)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "velit"], ["description", "Earum non possimus tempora."], ["created_at", "2020-04-23 16:34:50.763595"], ["updated_at", "2020-04-23 16:34:50.763595"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ab"], ["description", "Vel officiis nesciunt veritatis."], ["created_at", "2020-04-23 16:34:50.767228"], ["updated_at", "2020-04-23 16:34:50.767228"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Voluptas nihil occaecati nobis."], ["created_at", "2020-04-23 16:34:50.768630"], ["updated_at", "2020-04-23 16:34:50.768630"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "labore"], ["description", "Et in magni et."], ["created_at", "2020-04-23 16:34:50.769878"], ["updated_at", "2020-04-23 16:34:50.769878"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Aut ab qui quasi."], ["created_at", "2020-04-23 16:34:50.771072"], ["updated_at", "2020-04-23 16:34:50.771072"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "modi"], ["description", "Alias iure doloribus eligendi."], ["created_at", "2020-04-23 16:34:50.772232"], ["updated_at", "2020-04-23 16:34:50.772232"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "Quasi eum iste cupiditate."], ["created_at", "2020-04-23 16:34:50.773410"], ["updated_at", "2020-04-23 16:34:50.773410"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Sunt exercitationem repellat sapiente."], ["created_at", "2020-04-23 16:34:50.774521"], ["updated_at", "2020-04-23 16:34:50.774521"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Eveniet minima et et."], ["created_at", "2020-04-23 16:34:50.775994"], ["updated_at", "2020-04-23 16:34:50.775994"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Voluptatibus at voluptates dignissimos."], ["created_at", "2020-04-23 16:34:50.777992"], ["updated_at", "2020-04-23 16:34:50.777992"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Possimus repellat rerum maxime."], ["created_at", "2020-04-23 16:34:50.790191"], ["updated_at", "2020-04-23 16:34:50.790191"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Esse ipsam ut et."], ["created_at", "2020-04-23 16:34:50.792729"], ["updated_at", "2020-04-23 16:34:50.792729"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Ut optio cum eveniet."], ["created_at", "2020-04-23 16:34:50.793976"], ["updated_at", "2020-04-23 16:34:50.793976"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Amet minima rem iste."], ["created_at", "2020-04-23 16:34:50.795117"], ["updated_at", "2020-04-23 16:34:50.795117"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Alias atque cupiditate quo."], ["created_at", "2020-04-23 16:34:50.796507"], ["updated_at", "2020-04-23 16:34:50.796507"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Tempora dolor cum quia."], ["created_at", "2020-04-23 16:34:50.797721"], ["updated_at", "2020-04-23 16:34:50.797721"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nemo"], ["description", "Ut sed magni velit."], ["created_at", "2020-04-23 16:34:50.798854"], ["updated_at", "2020-04-23 16:34:50.798854"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Suscipit sint odit at."], ["created_at", "2020-04-23 16:34:50.799994"], ["updated_at", "2020-04-23 16:34:50.799994"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Omnis dolor consequuntur vero."], ["created_at", "2020-04-23 16:34:50.801112"], ["updated_at", "2020-04-23 16:34:50.801112"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Velit libero totam provident."], ["created_at", "2020-04-23 16:34:50.803107"], ["updated_at", "2020-04-23 16:34:50.803107"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Beatae rerum et qui."], ["created_at", "2020-04-23 16:34:50.816023"], ["updated_at", "2020-04-23 16:34:50.816023"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Natus consequuntur itaque voluptatum."], ["created_at", "2020-04-23 16:34:50.818954"], ["updated_at", "2020-04-23 16:34:50.818954"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Dolores et minus sed."], ["created_at", "2020-04-23 16:34:50.820292"], ["updated_at", "2020-04-23 16:34:50.820292"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "autem"], ["description", "Nulla voluptatibus eligendi quaerat."], ["created_at", "2020-04-23 16:34:50.821475"], ["updated_at", "2020-04-23 16:34:50.821475"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Molestiae qui consectetur tenetur."], ["created_at", "2020-04-23 16:34:50.822868"], ["updated_at", "2020-04-23 16:34:50.822868"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quam"], ["description", "Occaecati officiis alias voluptas."], ["created_at", "2020-04-23 16:34:50.827043"], ["updated_at", "2020-04-23 16:34:50.827043"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Animi odit vel inventore."], ["created_at", "2020-04-23 16:34:50.828710"], ["updated_at", "2020-04-23 16:34:50.828710"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illum"], ["description", "Libero provident explicabo ut."], ["created_at", "2020-04-23 16:34:50.829960"], ["updated_at", "2020-04-23 16:34:50.829960"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Ea adipisci voluptatem id."], ["created_at", "2020-04-23 16:34:50.831145"], ["updated_at", "2020-04-23 16:34:50.831145"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "iure"], ["description", "Corrupti impedit a et."], ["created_at", "2020-04-23 16:34:50.832988"], ["updated_at", "2020-04-23 16:34:50.832988"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 16:34:50.835533"], ["updated_at", "2020-04-23 16:34:50.835533"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 731)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (9.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Et quam nam officiis."], ["created_at", "2020-04-23 16:34:50.849746"], ["updated_at", "2020-04-23 16:34:50.849746"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rem"], ["description", "Quas consequatur perspiciatis necessitatibus."], ["created_at", "2020-04-23 16:34:50.852462"], ["updated_at", "2020-04-23 16:34:50.852462"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Quia sit veritatis nulla."], ["created_at", "2020-04-23 16:34:50.853718"], ["updated_at", "2020-04-23 16:34:50.853718"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Sit cumque doloremque quia."], ["created_at", "2020-04-23 16:34:50.854888"], ["updated_at", "2020-04-23 16:34:50.854888"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Excepturi quia rerum quos."], ["created_at", "2020-04-23 16:34:50.856115"], ["updated_at", "2020-04-23 16:34:50.856115"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Facilis amet aspernatur iure."], ["created_at", "2020-04-23 16:34:50.857722"], ["updated_at", "2020-04-23 16:34:50.857722"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Itaque est quis dolore."], ["created_at", "2020-04-23 16:34:50.858981"], ["updated_at", "2020-04-23 16:34:50.858981"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ad"], ["description", "Qui enim aut ut."], ["created_at", "2020-04-23 16:34:50.860237"], ["updated_at", "2020-04-23 16:34:50.860237"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Voluptatem quidem dolor deserunt."], ["created_at", "2020-04-23 16:34:50.861545"], ["updated_at", "2020-04-23 16:34:50.861545"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Et maxime voluptatem repellat."], ["created_at", "2020-04-23 16:34:50.863584"], ["updated_at", "2020-04-23 16:34:50.863584"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 16:34:50.867020"], ["updated_at", "2020-04-23 16:34:50.867020"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 3ms (Views: 0.5ms | ActiveRecord: 0.3ms | Allocations: 730)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Vel nihil in atque."], ["created_at", "2020-04-23 16:34:50.877818"], ["updated_at", "2020-04-23 16:34:50.877818"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Molestiae et fugit labore."], ["created_at", "2020-04-23 16:34:50.880473"], ["updated_at", "2020-04-23 16:34:50.880473"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "autem"], ["description", "Eius ut eos corporis."], ["created_at", "2020-04-23 16:34:50.881780"], ["updated_at", "2020-04-23 16:34:50.881780"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Fugit voluptas quaerat debitis."], ["created_at", "2020-04-23 16:34:50.883012"], ["updated_at", "2020-04-23 16:34:50.883012"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Quia sint architecto sunt."], ["created_at", "2020-04-23 16:34:50.884554"], ["updated_at", "2020-04-23 16:34:50.884554"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Consequatur dolorem quae earum."], ["created_at", "2020-04-23 16:34:50.886686"], ["updated_at", "2020-04-23 16:34:50.886686"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "optio"], ["description", "Hic deserunt dolores odio."], ["created_at", "2020-04-23 16:34:50.888368"], ["updated_at", "2020-04-23 16:34:50.888368"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Laborum est neque autem."], ["created_at", "2020-04-23 16:34:50.889595"], ["updated_at", "2020-04-23 16:34:50.889595"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "minus"], ["description", "Eaque fugit facere soluta."], ["created_at", "2020-04-23 16:34:50.890742"], ["updated_at", "2020-04-23 16:34:50.890742"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Exercitationem harum sint tenetur."], ["created_at", "2020-04-23 16:34:50.892578"], ["updated_at", "2020-04-23 16:34:50.892578"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 853)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "odio"], ["description", "Sapiente corrupti nisi non."], ["created_at", "2020-04-23 16:34:50.907540"], ["updated_at", "2020-04-23 16:34:50.907540"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Enim odio et aspernatur."], ["created_at", "2020-04-23 16:34:50.910326"], ["updated_at", "2020-04-23 16:34:50.910326"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Quae magni dolor occaecati."], ["created_at", "2020-04-23 16:34:50.911620"], ["updated_at", "2020-04-23 16:34:50.911620"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ea"], ["description", "Error est voluptatem sit."], ["created_at", "2020-04-23 16:34:50.912783"], ["updated_at", "2020-04-23 16:34:50.912783"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Maxime illum sit autem."], ["created_at", "2020-04-23 16:34:50.913938"], ["updated_at", "2020-04-23 16:34:50.913938"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "modi"], ["description", "Quia velit vitae officiis."], ["created_at", "2020-04-23 16:34:50.915110"], ["updated_at", "2020-04-23 16:34:50.915110"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Sunt et sint iure."], ["created_at", "2020-04-23 16:34:50.916314"], ["updated_at", "2020-04-23 16:34:50.916314"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nisi"], ["description", "Est perspiciatis tenetur perferendis."], ["created_at", "2020-04-23 16:34:50.917530"], ["updated_at", "2020-04-23 16:34:50.917530"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eos"], ["description", "Pariatur qui non et."], ["created_at", "2020-04-23 16:34:50.918722"], ["updated_at", "2020-04-23 16:34:50.918722"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Quam dolor non maiores."], ["created_at", "2020-04-23 16:34:50.920581"], ["updated_at", "2020-04-23 16:34:50.920581"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 853)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Quia non deserunt voluptas."], ["created_at", "2020-04-23 16:34:50.934109"], ["updated_at", "2020-04-23 16:34:50.934109"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quam"], ["description", "Labore qui eveniet ab."], ["created_at", "2020-04-23 16:34:50.936779"], ["updated_at", "2020-04-23 16:34:50.936779"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ea"], ["description", "Et hic in et."], ["created_at", "2020-04-23 16:34:50.938081"], ["updated_at", "2020-04-23 16:34:50.938081"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "amet"], ["description", "Aut doloremque dolores eos."], ["created_at", "2020-04-23 16:34:50.939199"], ["updated_at", "2020-04-23 16:34:50.939199"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Dolorum doloremque ut quod."], ["created_at", "2020-04-23 16:34:50.940284"], ["updated_at", "2020-04-23 16:34:50.940284"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Eius molestias eos dolor."], ["created_at", "2020-04-23 16:34:50.941463"], ["updated_at", "2020-04-23 16:34:50.941463"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eum"], ["description", "Numquam sapiente nulla nostrum."], ["created_at", "2020-04-23 16:34:50.942722"], ["updated_at", "2020-04-23 16:34:50.942722"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Et facere optio voluptate."], ["created_at", "2020-04-23 16:34:50.944715"], ["updated_at", "2020-04-23 16:34:50.944715"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Animi qui modi dicta."], ["created_at", "2020-04-23 16:34:50.946957"], ["updated_at", "2020-04-23 16:34:50.946957"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eum"], ["description", "Quaerat excepturi omnis sed."], ["created_at", "2020-04-23 16:34:50.949544"], ["updated_at", "2020-04-23 16:34:50.949544"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 16:34:50.952461"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 725)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Nemo officiis voluptas natus."], ["created_at", "2020-04-23 16:34:50.962428"], ["updated_at", "2020-04-23 16:34:50.962428"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "enim"], ["description", "Voluptas enim et expedita."], ["created_at", "2020-04-23 16:34:50.965784"], ["updated_at", "2020-04-23 16:34:50.965784"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Ipsam corrupti beatae vero."], ["created_at", "2020-04-23 16:34:50.967911"], ["updated_at", "2020-04-23 16:34:50.967911"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "natus"], ["description", "Iure commodi atque nesciunt."], ["created_at", "2020-04-23 16:34:50.969199"], ["updated_at", "2020-04-23 16:34:50.969199"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Praesentium non voluptas similique."], ["created_at", "2020-04-23 16:34:50.970388"], ["updated_at", "2020-04-23 16:34:50.970388"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "itaque"], ["description", "In aut neque ea."], ["created_at", "2020-04-23 16:34:50.971520"], ["updated_at", "2020-04-23 16:34:50.971520"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Dolor ea adipisci doloremque."], ["created_at", "2020-04-23 16:34:50.972669"], ["updated_at", "2020-04-23 16:34:50.972669"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vel"], ["description", "Et sint optio laborum."], ["created_at", "2020-04-23 16:34:50.973798"], ["updated_at", "2020-04-23 16:34:50.973798"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Repellat aut et recusandae."], ["created_at", "2020-04-23 16:34:50.974901"], ["updated_at", "2020-04-23 16:34:50.974901"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Consequatur rerum esse facere."], ["created_at", "2020-04-23 16:34:50.976968"], ["updated_at", "2020-04-23 16:34:50.976968"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:34:50 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.1ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 16:34:50.979793"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 706)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Consequuntur dolores iste consequatur."], ["created_at", "2020-04-23 16:34:50.990674"], ["updated_at", "2020-04-23 16:34:50.990674"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "unde"], ["description", "Odit esse qui et."], ["created_at", "2020-04-23 16:34:50.993380"], ["updated_at", "2020-04-23 16:34:50.993380"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Autem dicta culpa illo."], ["created_at", "2020-04-23 16:34:50.994682"], ["updated_at", "2020-04-23 16:34:50.994682"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Quam molestiae laboriosam sed."], ["created_at", "2020-04-23 16:34:50.995840"], ["updated_at", "2020-04-23 16:34:50.995840"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Excepturi aut dolorum accusantium."], ["created_at", "2020-04-23 16:34:50.997134"], ["updated_at", "2020-04-23 16:34:50.997134"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "At dicta earum sit."], ["created_at", "2020-04-23 16:34:50.998372"], ["updated_at", "2020-04-23 16:34:50.998372"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sint"], ["description", "Aut rerum ipsum perferendis."], ["created_at", "2020-04-23 16:34:50.999531"], ["updated_at", "2020-04-23 16:34:50.999531"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Doloremque iste velit quasi."], ["created_at", "2020-04-23 16:34:51.000678"], ["updated_at", "2020-04-23 16:34:51.000678"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "iste"], ["description", "Minima dolores dolorem error."], ["created_at", "2020-04-23 16:34:51.001844"], ["updated_at", "2020-04-23 16:34:51.001844"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Sit ipsum iusto in."], ["created_at", "2020-04-23 16:34:51.003624"], ["updated_at", "2020-04-23 16:34:51.003624"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-04-23 13:34:51 -0300
+Processing by MeetsController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mMeet Destroy (0.2ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.5ms | Allocations: 599)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (106.1ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (112.0ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Tempore totam praesentium et."], ["created_at", "2020-04-23 16:35:36.698359"], ["updated_at", "2020-04-23 16:35:36.698359"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Excepturi atque placeat consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.711604"], ["updated_at", "2020-04-23 16:35:36.711604"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ad quia blanditiis fuga?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.713723"], ["updated_at", "2020-04-23 16:35:36.713723"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia sequi maxime beatae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.715913"], ["updated_at", "2020-04-23 16:35:36.715913"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis sunt occaecati aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.718938"], ["updated_at", "2020-04-23 16:35:36.718938"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel voluptatem veniam recusandae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.721141"], ["updated_at", "2020-04-23 16:35:36.721141"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui nisi est sit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.722849"], ["updated_at", "2020-04-23 16:35:36.722849"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veniam aut et dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.725423"], ["updated_at", "2020-04-23 16:35:36.725423"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iste velit reprehenderit eum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.727482"], ["updated_at", "2020-04-23 16:35:36.727482"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos enim neque quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.729315"], ["updated_at", "2020-04-23 16:35:36.729315"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Illo placeat aliquam quae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.732018"], ["updated_at", "2020-04-23 16:35:36.732018"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem et temporibus quod?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.734248"], ["updated_at", "2020-04-23 16:35:36.734248"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Libero aut eaque eligendi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.736843"], ["updated_at", "2020-04-23 16:35:36.736843"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Praesentium a esse iusto?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.739182"], ["updated_at", "2020-04-23 16:35:36.739182"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Itaque voluptas voluptatem temporibus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.741486"], ["updated_at", "2020-04-23 16:35:36.741486"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et aut praesentium eos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.743731"], ["updated_at", "2020-04-23 16:35:36.743731"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia sit ducimus repellendus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.745850"], ["updated_at", "2020-04-23 16:35:36.745850"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Esse dolore porro suscipit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.747453"], ["updated_at", "2020-04-23 16:35:36.747453"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam asperiores facere repellat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.749096"], ["updated_at", "2020-04-23 16:35:36.749096"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et ipsam enim unde?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.750672"], ["updated_at", "2020-04-23 16:35:36.750672"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Pariatur quia voluptas quos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.752450"], ["updated_at", "2020-04-23 16:35:36.752450"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:35:36 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 23ms (Views: 8.0ms | ActiveRecord: 0.3ms | Allocations: 6217)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (24.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Corrupti necessitatibus ipsa vitae."], ["created_at", "2020-04-23 16:35:36.825088"], ["updated_at", "2020-04-23 16:35:36.825088"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vitae sit eius quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.829764"], ["updated_at", "2020-04-23 16:35:36.829764"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo consectetur voluptatem qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.832012"], ["updated_at", "2020-04-23 16:35:36.832012"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et reprehenderit reiciendis dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.833741"], ["updated_at", "2020-04-23 16:35:36.833741"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea aliquid veritatis itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.835316"], ["updated_at", "2020-04-23 16:35:36.835316"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cumque et voluptas officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.838147"], ["updated_at", "2020-04-23 16:35:36.838147"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas non eveniet numquam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.841043"], ["updated_at", "2020-04-23 16:35:36.841043"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id aut officiis modi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.843946"], ["updated_at", "2020-04-23 16:35:36.843946"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil voluptatem eaque corporis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.846547"], ["updated_at", "2020-04-23 16:35:36.846547"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel officiis omnis non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.848623"], ["updated_at", "2020-04-23 16:35:36.848623"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Neque ea dolor aliquam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.850338"], ["updated_at", "2020-04-23 16:35:36.850338"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique id et est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.851976"], ["updated_at", "2020-04-23 16:35:36.851976"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos cumque qui ex?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.853663"], ["updated_at", "2020-04-23 16:35:36.853663"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas minus earum eveniet?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.855588"], ["updated_at", "2020-04-23 16:35:36.855588"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut cum in illo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.857668"], ["updated_at", "2020-04-23 16:35:36.857668"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor minima explicabo eos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.859420"], ["updated_at", "2020-04-23 16:35:36.859420"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem non error itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.861102"], ["updated_at", "2020-04-23 16:35:36.861102"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolore deserunt perferendis vero?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.862708"], ["updated_at", "2020-04-23 16:35:36.862708"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis sapiente ducimus totam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.864816"], ["updated_at", "2020-04-23 16:35:36.864816"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Illo consequatur accusantium dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.866782"], ["updated_at", "2020-04-23 16:35:36.866782"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi deserunt quis doloremque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.868462"], ["updated_at", "2020-04-23 16:35:36.868462"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:35:36 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.2ms | Allocations: 4183)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (19.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "porro"], ["description", "Blanditiis aut hic neque."], ["created_at", "2020-04-23 16:35:36.892735"], ["updated_at", "2020-04-23 16:35:36.892735"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut eos ipsam adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.915836"], ["updated_at", "2020-04-23 16:35:36.915836"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Asperiores sint vel est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.921236"], ["updated_at", "2020-04-23 16:35:36.921236"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Recusandae nobis quae qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.924092"], ["updated_at", "2020-04-23 16:35:36.924092"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint porro rerum soluta?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.926413"], ["updated_at", "2020-04-23 16:35:36.926413"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non dolores suscipit optio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.928558"], ["updated_at", "2020-04-23 16:35:36.928558"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.0ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deleniti voluptas sit similique?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.930688"], ["updated_at", "2020-04-23 16:35:36.930688"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui itaque et consectetur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.934328"], ["updated_at", "2020-04-23 16:35:36.934328"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vitae enim atque et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.937662"], ["updated_at", "2020-04-23 16:35:36.937662"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Delectus architecto fugit rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.941427"], ["updated_at", "2020-04-23 16:35:36.941427"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem sed enim numquam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.944787"], ["updated_at", "2020-04-23 16:35:36.944787"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Excepturi voluptatem et sint?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.947924"], ["updated_at", "2020-04-23 16:35:36.947924"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis ea omnis sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.950652"], ["updated_at", "2020-04-23 16:35:36.950652"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut quisquam vel laborum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.953171"], ["updated_at", "2020-04-23 16:35:36.953171"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cumque modi aut debitis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.955034"], ["updated_at", "2020-04-23 16:35:36.955034"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut dolor repellat nisi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.957340"], ["updated_at", "2020-04-23 16:35:36.957340"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita totam et ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.960913"], ["updated_at", "2020-04-23 16:35:36.960913"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Modi enim rerum autem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.962971"], ["updated_at", "2020-04-23 16:35:36.962971"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Recusandae qui esse architecto?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.964841"], ["updated_at", "2020-04-23 16:35:36.964841"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut alias aut aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.966684"], ["updated_at", "2020-04-23 16:35:36.966684"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed laudantium totam molestias?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.968282"], ["updated_at", "2020-04-23 16:35:36.968282"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 13:35:36 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quas"], ["description", "Aut assumenda dolor nisi."], ["created_at", "2020-04-23 16:35:36.981208"], ["updated_at", "2020-04-23 16:35:36.981208"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita rerum et ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.985609"], ["updated_at", "2020-04-23 16:35:36.985609"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ullam aut delectus dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.988131"], ["updated_at", "2020-04-23 16:35:36.988131"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Esse quos tenetur perferendis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.990801"], ["updated_at", "2020-04-23 16:35:36.990801"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Impedit dolores cumque nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.992856"], ["updated_at", "2020-04-23 16:35:36.992856"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut non ut esse?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.994946"], ["updated_at", "2020-04-23 16:35:36.994946"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum odio doloremque omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:36.997370"], ["updated_at", "2020-04-23 16:35:36.997370"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel necessitatibus molestias eos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.003294"], ["updated_at", "2020-04-23 16:35:37.003294"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloribus autem quia officia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.006001"], ["updated_at", "2020-04-23 16:35:37.006001"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fuga laboriosam incidunt voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.008332"], ["updated_at", "2020-04-23 16:35:37.008332"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laudantium consequuntur ut molestias?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.010514"], ["updated_at", "2020-04-23 16:35:37.010514"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui repudiandae quia sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.012261"], ["updated_at", "2020-04-23 16:35:37.012261"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et unde voluptatem quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.013819"], ["updated_at", "2020-04-23 16:35:37.013819"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Culpa qui qui a?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.015537"], ["updated_at", "2020-04-23 16:35:37.015537"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam voluptas dolores similique?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.017401"], ["updated_at", "2020-04-23 16:35:37.017401"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed sapiente voluptatibus vel?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.019683"], ["updated_at", "2020-04-23 16:35:37.019683"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et inventore sit quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.021456"], ["updated_at", "2020-04-23 16:35:37.021456"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facilis sapiente recusandae aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.023065"], ["updated_at", "2020-04-23 16:35:37.023065"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Unde eligendi est minus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.024708"], ["updated_at", "2020-04-23 16:35:37.024708"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem ipsa molestias voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.026642"], ["updated_at", "2020-04-23 16:35:37.026642"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint et illum consequuntur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.028354"], ["updated_at", "2020-04-23 16:35:37.028354"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 211)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Non magni id et."], ["created_at", "2020-04-23 16:35:37.046308"], ["updated_at", "2020-04-23 16:35:37.046308"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed necessitatibus ipsam tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.050000"], ["updated_at", "2020-04-23 16:35:37.050000"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorum culpa aut exercitationem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.051899"], ["updated_at", "2020-04-23 16:35:37.051899"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quas minus quod porro?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.053507"], ["updated_at", "2020-04-23 16:35:37.053507"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugiat est omnis perspiciatis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.055092"], ["updated_at", "2020-04-23 16:35:37.055092"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae maxime id qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.056743"], ["updated_at", "2020-04-23 16:35:37.056743"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugiat numquam ab in?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.058953"], ["updated_at", "2020-04-23 16:35:37.058953"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut aspernatur repellat perferendis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.063771"], ["updated_at", "2020-04-23 16:35:37.063771"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusamus fugit iusto nisi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.065997"], ["updated_at", "2020-04-23 16:35:37.065997"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos sit fugit ipsam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.067799"], ["updated_at", "2020-04-23 16:35:37.067799"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae aspernatur accusamus minima?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.069439"], ["updated_at", "2020-04-23 16:35:37.069439"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In tenetur vel molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.071035"], ["updated_at", "2020-04-23 16:35:37.071035"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nemo rerum laboriosam hic?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.073061"], ["updated_at", "2020-04-23 16:35:37.073061"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime ex sed non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.074821"], ["updated_at", "2020-04-23 16:35:37.074821"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit impedit non aliquam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.076810"], ["updated_at", "2020-04-23 16:35:37.076810"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odio eum atque consequuntur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.079538"], ["updated_at", "2020-04-23 16:35:37.079538"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta quis qui adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.081909"], ["updated_at", "2020-04-23 16:35:37.081909"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Excepturi distinctio voluptas harum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.083966"], ["updated_at", "2020-04-23 16:35:37.083966"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem quibusdam doloremque velit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.086376"], ["updated_at", "2020-04-23 16:35:37.086376"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae accusamus iste quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.088269"], ["updated_at", "2020-04-23 16:35:37.088269"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime tempora eum magnam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.090211"], ["updated_at", "2020-04-23 16:35:37.090211"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 719)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Veniam aut non et."], ["created_at", "2020-04-23 16:35:37.106664"], ["updated_at", "2020-04-23 16:35:37.106664"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur at est vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.110288"], ["updated_at", "2020-04-23 16:35:37.110288"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut deserunt eos asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.112239"], ["updated_at", "2020-04-23 16:35:37.112239"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In veniam eum quas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.114173"], ["updated_at", "2020-04-23 16:35:37.114173"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellat qui quidem est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.116422"], ["updated_at", "2020-04-23 16:35:37.116422"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sequi praesentium eaque quos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.118938"], ["updated_at", "2020-04-23 16:35:37.118938"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laborum doloribus magnam numquam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.122210"], ["updated_at", "2020-04-23 16:35:37.122210"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores vel ipsum asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.125696"], ["updated_at", "2020-04-23 16:35:37.125696"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum delectus facilis quam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.127827"], ["updated_at", "2020-04-23 16:35:37.127827"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cum totam iste delectus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.129480"], ["updated_at", "2020-04-23 16:35:37.129480"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae quo architecto iure?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.131146"], ["updated_at", "2020-04-23 16:35:37.131146"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel beatae modi debitis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.132768"], ["updated_at", "2020-04-23 16:35:37.132768"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo eos excepturi inventore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.134380"], ["updated_at", "2020-04-23 16:35:37.134380"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Porro et vel est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.136172"], ["updated_at", "2020-04-23 16:35:37.136172"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo qui blanditiis cum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.138472"], ["updated_at", "2020-04-23 16:35:37.138472"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia et et eveniet?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.141391"], ["updated_at", "2020-04-23 16:35:37.141391"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti aspernatur unde aperiam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.143488"], ["updated_at", "2020-04-23 16:35:37.143488"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil nemo dolor aspernatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.145405"], ["updated_at", "2020-04-23 16:35:37.145405"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "A et odit eos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.147128"], ["updated_at", "2020-04-23 16:35:37.147128"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta esse molestiae facere?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.148662"], ["updated_at", "2020-04-23 16:35:37.148662"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquam beatae eaque illum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.150255"], ["updated_at", "2020-04-23 16:35:37.150255"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 691)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Ut quaerat ipsa ab."], ["created_at", "2020-04-23 16:35:37.165277"], ["updated_at", "2020-04-23 16:35:37.165277"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas a aliquid voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.168971"], ["updated_at", "2020-04-23 16:35:37.168971"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nam debitis earum ex?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.170792"], ["updated_at", "2020-04-23 16:35:37.170792"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Delectus praesentium asperiores porro?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.172708"], ["updated_at", "2020-04-23 16:35:37.172708"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Porro hic cumque odio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.174346"], ["updated_at", "2020-04-23 16:35:37.174346"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit officia aut et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.176071"], ["updated_at", "2020-04-23 16:35:37.176071"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit provident magni ad?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.177862"], ["updated_at", "2020-04-23 16:35:37.177862"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis et et aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.181170"], ["updated_at", "2020-04-23 16:35:37.181170"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dignissimos et impedit itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.184175"], ["updated_at", "2020-04-23 16:35:37.184175"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia aut vel et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.186438"], ["updated_at", "2020-04-23 16:35:37.186438"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem eaque delectus iure?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.188280"], ["updated_at", "2020-04-23 16:35:37.188280"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In sit ex quas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.190073"], ["updated_at", "2020-04-23 16:35:37.190073"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus magnam natus est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.191671"], ["updated_at", "2020-04-23 16:35:37.191671"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempore occaecati quae doloremque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.193335"], ["updated_at", "2020-04-23 16:35:37.193335"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia quo rerum et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.194888"], ["updated_at", "2020-04-23 16:35:37.194888"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit fugit quisquam harum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.196605"], ["updated_at", "2020-04-23 16:35:37.196605"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis reprehenderit quisquam culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.198783"], ["updated_at", "2020-04-23 16:35:37.198783"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione doloremque et culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.201759"], ["updated_at", "2020-04-23 16:35:37.201759"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut laborum vero sit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.203702"], ["updated_at", "2020-04-23 16:35:37.203702"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita neque exercitationem velit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.205430"], ["updated_at", "2020-04-23 16:35:37.205430"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officia sit maiores recusandae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.207190"], ["updated_at", "2020-04-23 16:35:37.207190"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 583)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Qui sunt voluptas officia."], ["created_at", "2020-04-23 16:35:37.221595"], ["updated_at", "2020-04-23 16:35:37.221595"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia blanditiis deleniti aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.225638"], ["updated_at", "2020-04-23 16:35:37.225638"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem et mollitia dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.227898"], ["updated_at", "2020-04-23 16:35:37.227898"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cum non eos eos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.229824"], ["updated_at", "2020-04-23 16:35:37.229824"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis molestiae magnam mollitia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.231664"], ["updated_at", "2020-04-23 16:35:37.231664"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis dolor voluptatibus aliquid?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.233406"], ["updated_at", "2020-04-23 16:35:37.233406"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut amet officiis id?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.235029"], ["updated_at", "2020-04-23 16:35:37.235029"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Placeat aut illum sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.237797"], ["updated_at", "2020-04-23 16:35:37.237797"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempora modi possimus natus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.241618"], ["updated_at", "2020-04-23 16:35:37.241618"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Numquam quisquam ipsa ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.244647"], ["updated_at", "2020-04-23 16:35:37.244647"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Exercitationem nulla rerum beatae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.247011"], ["updated_at", "2020-04-23 16:35:37.247011"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates sapiente possimus magnam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.249186"], ["updated_at", "2020-04-23 16:35:37.249186"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Animi non mollitia qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.251332"], ["updated_at", "2020-04-23 16:35:37.251332"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est vero blanditiis recusandae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.253992"], ["updated_at", "2020-04-23 16:35:37.253992"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia accusamus a nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.257477"], ["updated_at", "2020-04-23 16:35:37.257477"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corporis sed tempora enim?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.260788"], ["updated_at", "2020-04-23 16:35:37.260788"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error ipsam ipsum consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.263095"], ["updated_at", "2020-04-23 16:35:37.263095"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati illum magni esse?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.266127"], ["updated_at", "2020-04-23 16:35:37.266127"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ex sit quia fuga?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.269039"], ["updated_at", "2020-04-23 16:35:37.269039"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Enim aperiam id quas?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.271282"], ["updated_at", "2020-04-23 16:35:37.271282"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas delectus maiores et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.273140"], ["updated_at", "2020-04-23 16:35:37.273140"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 566)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Itaque quis aut ratione."], ["created_at", "2020-04-23 16:35:37.324458"], ["updated_at", "2020-04-23 16:35:37.324458"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem qui at sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.330702"], ["updated_at", "2020-04-23 16:35:37.330702"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos dicta assumenda pariatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.333511"], ["updated_at", "2020-04-23 16:35:37.333511"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et qui laudantium voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.336283"], ["updated_at", "2020-04-23 16:35:37.336283"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Alias quas molestias quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.338961"], ["updated_at", "2020-04-23 16:35:37.338961"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut sed dolore voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.343735"], ["updated_at", "2020-04-23 16:35:37.343735"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sequi magnam doloremque voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.346882"], ["updated_at", "2020-04-23 16:35:37.346882"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et et consequatur porro?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.349859"], ["updated_at", "2020-04-23 16:35:37.349859"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Porro magnam occaecati explicabo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.352344"], ["updated_at", "2020-04-23 16:35:37.352344"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptate similique perspiciatis ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.355466"], ["updated_at", "2020-04-23 16:35:37.355466"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloremque non repellat ab?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.358278"], ["updated_at", "2020-04-23 16:35:37.358278"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione exercitationem voluptas in?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.364051"], ["updated_at", "2020-04-23 16:35:37.364051"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor in minus excepturi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.366457"], ["updated_at", "2020-04-23 16:35:37.366457"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Excepturi eum voluptatum officia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.368483"], ["updated_at", "2020-04-23 16:35:37.368483"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quisquam ut voluptas facilis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.370361"], ["updated_at", "2020-04-23 16:35:37.370361"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta nemo aliquam ducimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.372568"], ["updated_at", "2020-04-23 16:35:37.372568"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laudantium in non aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.375585"], ["updated_at", "2020-04-23 16:35:37.375585"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "At natus velit est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.377589"], ["updated_at", "2020-04-23 16:35:37.377589"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis libero excepturi odio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.380044"], ["updated_at", "2020-04-23 16:35:37.380044"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel error quis ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.383590"], ["updated_at", "2020-04-23 16:35:37.383590"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea explicabo architecto quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.386094"], ["updated_at", "2020-04-23 16:35:37.386094"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"title"=>"Visit Narnia", "description"=>"false", "meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Visit Narnia"], ["description", "false"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.404968"], ["updated_at", "2020-04-23 16:35:37.404968"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 4ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1095)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Quis voluptatibus iure tempora."], ["created_at", "2020-04-23 16:35:37.417614"], ["updated_at", "2020-04-23 16:35:37.417614"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsum pariatur quibusdam quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.423444"], ["updated_at", "2020-04-23 16:35:37.423444"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Placeat voluptas aut aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.425625"], ["updated_at", "2020-04-23 16:35:37.425625"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Enim consequatur molestiae laborum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.427490"], ["updated_at", "2020-04-23 16:35:37.427490"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Itaque architecto nam soluta?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.429159"], ["updated_at", "2020-04-23 16:35:37.429159"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Harum libero facere ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.431015"], ["updated_at", "2020-04-23 16:35:37.431015"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique est consequatur voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.432642"], ["updated_at", "2020-04-23 16:35:37.432642"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nemo est voluptatum tenetur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.435226"], ["updated_at", "2020-04-23 16:35:37.435226"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis mollitia perspiciatis aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.437130"], ["updated_at", "2020-04-23 16:35:37.437130"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores omnis quidem non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.438820"], ["updated_at", "2020-04-23 16:35:37.438820"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non enim aliquid eos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.441527"], ["updated_at", "2020-04-23 16:35:37.441527"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Esse nihil aliquid dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.444395"], ["updated_at", "2020-04-23 16:35:37.444395"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rem sit nihil ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.446538"], ["updated_at", "2020-04-23 16:35:37.446538"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia vero at consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.448576"], ["updated_at", "2020-04-23 16:35:37.448576"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui maiores blanditiis natus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.450530"], ["updated_at", "2020-04-23 16:35:37.450530"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia soluta eius officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.452183"], ["updated_at", "2020-04-23 16:35:37.452183"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et autem omnis sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.453789"], ["updated_at", "2020-04-23 16:35:37.453789"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Esse quisquam dolorum velit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.455498"], ["updated_at", "2020-04-23 16:35:37.455498"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corporis consequatur delectus quod?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.457900"], ["updated_at", "2020-04-23 16:35:37.457900"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime aliquid eaque asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.459778"], ["updated_at", "2020-04-23 16:35:37.459778"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint vitae et consequuntur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.463827"], ["updated_at", "2020-04-23 16:35:37.463827"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1131)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Illum quia et iure."], ["created_at", "2020-04-23 16:35:37.478611"], ["updated_at", "2020-04-23 16:35:37.478611"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fuga voluptas reiciendis possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.483029"], ["updated_at", "2020-04-23 16:35:37.483029"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non et qui iste?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.485144"], ["updated_at", "2020-04-23 16:35:37.485144"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et rerum voluptatem provident?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.488085"], ["updated_at", "2020-04-23 16:35:37.488085"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia voluptas ullam possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.490570"], ["updated_at", "2020-04-23 16:35:37.490570"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reprehenderit ut et dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.493269"], ["updated_at", "2020-04-23 16:35:37.493269"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint pariatur ipsam mollitia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.495504"], ["updated_at", "2020-04-23 16:35:37.495504"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed officia ut dolorum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.498147"], ["updated_at", "2020-04-23 16:35:37.498147"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut quam dolores voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.500258"], ["updated_at", "2020-04-23 16:35:37.500258"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eligendi unde mollitia temporibus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.504406"], ["updated_at", "2020-04-23 16:35:37.504406"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestias perspiciatis tempora ducimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.506732"], ["updated_at", "2020-04-23 16:35:37.506732"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquam dicta in libero?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.508538"], ["updated_at", "2020-04-23 16:35:37.508538"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatum eos voluptatem et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.510210"], ["updated_at", "2020-04-23 16:35:37.510210"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nulla est fugit rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.511842"], ["updated_at", "2020-04-23 16:35:37.511842"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati distinctio maiores molestias?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.513446"], ["updated_at", "2020-04-23 16:35:37.513446"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita sit ipsa cum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.515285"], ["updated_at", "2020-04-23 16:35:37.515285"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ducimus unde laborum tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.517160"], ["updated_at", "2020-04-23 16:35:37.517160"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Atque omnis voluptate fugit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.518894"], ["updated_at", "2020-04-23 16:35:37.518894"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repudiandae est at ducimus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.521409"], ["updated_at", "2020-04-23 16:35:37.521409"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia qui eaque veniam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.523733"], ["updated_at", "2020-04-23 16:35:37.523733"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veniam ea esse distinctio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.525465"], ["updated_at", "2020-04-23 16:35:37.525465"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1110)
+ [1m[35m (0.7ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "autem"], ["description", "Veniam magnam perferendis voluptas."], ["created_at", "2020-04-23 16:35:37.541435"], ["updated_at", "2020-04-23 16:35:37.541435"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est recusandae dolorem earum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.545706"], ["updated_at", "2020-04-23 16:35:37.545706"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquid porro deleniti dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.547641"], ["updated_at", "2020-04-23 16:35:37.547641"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum tenetur dolore velit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.549567"], ["updated_at", "2020-04-23 16:35:37.549567"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut debitis sed deserunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.551179"], ["updated_at", "2020-04-23 16:35:37.551179"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui et aut sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.552775"], ["updated_at", "2020-04-23 16:35:37.552775"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia ipsa velit maxime?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.554471"], ["updated_at", "2020-04-23 16:35:37.554471"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil illum dolorum quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.557345"], ["updated_at", "2020-04-23 16:35:37.557345"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquid deserunt minus nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.559591"], ["updated_at", "2020-04-23 16:35:37.559591"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deleniti eius libero non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.562966"], ["updated_at", "2020-04-23 16:35:37.562966"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non et maxime inventore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.588450"], ["updated_at", "2020-04-23 16:35:37.588450"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum consequatur fugit dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.590210"], ["updated_at", "2020-04-23 16:35:37.590210"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem sequi qui est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.591950"], ["updated_at", "2020-04-23 16:35:37.591950"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In neque voluptas incidunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.593895"], ["updated_at", "2020-04-23 16:35:37.593895"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et similique dignissimos ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.595993"], ["updated_at", "2020-04-23 16:35:37.595993"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deleniti aut vel quae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.598209"], ["updated_at", "2020-04-23 16:35:37.598209"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Saepe unde veritatis omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.600420"], ["updated_at", "2020-04-23 16:35:37.600420"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos amet voluptatem corporis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.602949"], ["updated_at", "2020-04-23 16:35:37.602949"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ad voluptatem deleniti et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.605563"], ["updated_at", "2020-04-23 16:35:37.605563"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem quidem autem aut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.608122"], ["updated_at", "2020-04-23 16:35:37.608122"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut a iure dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.610323"], ["updated_at", "2020-04-23 16:35:37.610323"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Update (0.2ms)[0m [1m[33mUPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ?[0m [["title", "Mozart"], ["updated_at", "2020-04-23 16:35:37.614272"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1041)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "alias"], ["description", "Excepturi accusamus sed enim."], ["created_at", "2020-04-23 16:35:37.626431"], ["updated_at", "2020-04-23 16:35:37.626431"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "A sapiente dolor ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.630960"], ["updated_at", "2020-04-23 16:35:37.630960"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et mollitia dignissimos deserunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.632964"], ["updated_at", "2020-04-23 16:35:37.632964"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi quo natus atque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.634481"], ["updated_at", "2020-04-23 16:35:37.634481"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Temporibus id minus omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.636159"], ["updated_at", "2020-04-23 16:35:37.636159"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas est voluptatem tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.637782"], ["updated_at", "2020-04-23 16:35:37.637782"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quidem veritatis aliquid quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.639265"], ["updated_at", "2020-04-23 16:35:37.639265"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "At explicabo quam saepe?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.642260"], ["updated_at", "2020-04-23 16:35:37.642260"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus incidunt reiciendis et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.645512"], ["updated_at", "2020-04-23 16:35:37.645512"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur praesentium ratione omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.647752"], ["updated_at", "2020-04-23 16:35:37.647752"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In veritatis vel officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.649330"], ["updated_at", "2020-04-23 16:35:37.649330"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati magni omnis iste?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.650852"], ["updated_at", "2020-04-23 16:35:37.650852"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea dolor et assumenda?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.652535"], ["updated_at", "2020-04-23 16:35:37.652535"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis est reiciendis at?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.654417"], ["updated_at", "2020-04-23 16:35:37.654417"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugit nihil nesciunt blanditiis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.657060"], ["updated_at", "2020-04-23 16:35:37.657060"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Natus rerum illum quo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.659278"], ["updated_at", "2020-04-23 16:35:37.659278"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut dignissimos facere quae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.663414"], ["updated_at", "2020-04-23 16:35:37.663414"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reprehenderit error id sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.667008"], ["updated_at", "2020-04-23 16:35:37.667008"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quidem perferendis quo quaerat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.669636"], ["updated_at", "2020-04-23 16:35:37.669636"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui dolorum officia itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.671400"], ["updated_at", "2020-04-23 16:35:37.671400"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Provident iure magnam veritatis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.673100"], ["updated_at", "2020-04-23 16:35:37.673100"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Update (0.1ms)[0m [1m[33mUPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ?[0m [["title", "Mozart"], ["updated_at", "2020-04-23 16:35:37.676707"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.3ms | Allocations: 995)
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.6ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Voluptas nihil nesciunt earum."], ["created_at", "2020-04-23 16:35:37.690007"], ["updated_at", "2020-04-23 16:35:37.690007"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae hic laboriosam quisquam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.694561"], ["updated_at", "2020-04-23 16:35:37.694561"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto quia facilis deserunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.697178"], ["updated_at", "2020-04-23 16:35:37.697178"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et quisquam qui ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.699797"], ["updated_at", "2020-04-23 16:35:37.699797"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nesciunt exercitationem consequatur non?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.702261"], ["updated_at", "2020-04-23 16:35:37.702261"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deleniti unde praesentium nemo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.704857"], ["updated_at", "2020-04-23 16:35:37.704857"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Impedit ab amet qui?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.707601"], ["updated_at", "2020-04-23 16:35:37.707601"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis doloribus error ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.710025"], ["updated_at", "2020-04-23 16:35:37.710025"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Enim illum ipsum est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.711844"], ["updated_at", "2020-04-23 16:35:37.711844"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ab nihil ut nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.713495"], ["updated_at", "2020-04-23 16:35:37.713495"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem harum dolores ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.715082"], ["updated_at", "2020-04-23 16:35:37.715082"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusamus reprehenderit error tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.716926"], ["updated_at", "2020-04-23 16:35:37.716926"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tenetur qui ut laboriosam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.718595"], ["updated_at", "2020-04-23 16:35:37.718595"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non aliquid dicta temporibus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.720603"], ["updated_at", "2020-04-23 16:35:37.720603"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia vero nisi ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.724006"], ["updated_at", "2020-04-23 16:35:37.724006"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nobis magnam quo necessitatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.726758"], ["updated_at", "2020-04-23 16:35:37.726758"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos vitae officiis sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.728893"], ["updated_at", "2020-04-23 16:35:37.728893"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae qui maiores eveniet?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.730566"], ["updated_at", "2020-04-23 16:35:37.730566"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perspiciatis omnis voluptatibus quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.732126"], ["updated_at", "2020-04-23 16:35:37.732126"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reprehenderit voluptas aut magni?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.733672"], ["updated_at", "2020-04-23 16:35:37.733672"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolore est et aliquam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.735224"], ["updated_at", "2020-04-23 16:35:37.735224"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/-1" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"-1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", -1], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Sequi veniam sunt amet."], ["created_at", "2020-04-23 16:35:37.748798"], ["updated_at", "2020-04-23 16:35:37.748798"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Harum et est sed?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.752243"], ["updated_at", "2020-04-23 16:35:37.752243"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus sit similique neque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.754171"], ["updated_at", "2020-04-23 16:35:37.754171"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat repellat sit fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.756093"], ["updated_at", "2020-04-23 16:35:37.756093"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem provident at ea?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.757932"], ["updated_at", "2020-04-23 16:35:37.757932"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestias pariatur ea quam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.759535"], ["updated_at", "2020-04-23 16:35:37.759535"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.0ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deserunt illo maxime molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.761134"], ["updated_at", "2020-04-23 16:35:37.761134"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et consequatur quam vel?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.764473"], ["updated_at", "2020-04-23 16:35:37.764473"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nesciunt velit assumenda et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.767345"], ["updated_at", "2020-04-23 16:35:37.767345"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Explicabo possimus voluptas animi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.769338"], ["updated_at", "2020-04-23 16:35:37.769338"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Placeat et sed fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.771095"], ["updated_at", "2020-04-23 16:35:37.771095"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rem expedita modi aliquid?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.772832"], ["updated_at", "2020-04-23 16:35:37.772832"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Modi ipsum voluptates tenetur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.774579"], ["updated_at", "2020-04-23 16:35:37.774579"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error sunt repudiandae neque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.776449"], ["updated_at", "2020-04-23 16:35:37.776449"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui laborum eius voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.778336"], ["updated_at", "2020-04-23 16:35:37.778336"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minima blanditiis necessitatibus a?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.780038"], ["updated_at", "2020-04-23 16:35:37.780038"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Porro quis non quod?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.782118"], ["updated_at", "2020-04-23 16:35:37.782118"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ullam eos quia est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.784589"], ["updated_at", "2020-04-23 16:35:37.784589"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum impedit esse necessitatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.786825"], ["updated_at", "2020-04-23 16:35:37.786825"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut voluptatum minus quos?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.788633"], ["updated_at", "2020-04-23 16:35:37.788633"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fuga nihil sed quo?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.790380"], ["updated_at", "2020-04-23 16:35:37.790380"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/-1" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"-1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", -1], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Sapiente quae consequuntur qui."], ["created_at", "2020-04-23 16:35:37.804835"], ["updated_at", "2020-04-23 16:35:37.804835"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti ad voluptatem earum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.808758"], ["updated_at", "2020-04-23 16:35:37.808758"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Soluta et consequatur veniam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.811230"], ["updated_at", "2020-04-23 16:35:37.811230"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut sint aut et?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.813520"], ["updated_at", "2020-04-23 16:35:37.813520"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae rem non est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.816619"], ["updated_at", "2020-04-23 16:35:37.816619"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Culpa dolores autem eum?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.819620"], ["updated_at", "2020-04-23 16:35:37.819620"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.0ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi et suscipit ut?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.822267"], ["updated_at", "2020-04-23 16:35:37.822267"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minus dolores nihil magnam?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.826425"], ["updated_at", "2020-04-23 16:35:37.826425"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia consequatur hic quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.828986"], ["updated_at", "2020-04-23 16:35:37.828986"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates et ea consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.830547"], ["updated_at", "2020-04-23 16:35:37.830547"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel assumenda eum quis?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.832279"], ["updated_at", "2020-04-23 16:35:37.832279"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Blanditiis quae laudantium sit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.833995"], ["updated_at", "2020-04-23 16:35:37.833995"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum dolor quis doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.835702"], ["updated_at", "2020-04-23 16:35:37.835702"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Architecto error aut quia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.837478"], ["updated_at", "2020-04-23 16:35:37.837478"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Impedit illum velit neque?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.839125"], ["updated_at", "2020-04-23 16:35:37.839125"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor voluptatibus ratione mollitia?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.840699"], ["updated_at", "2020-04-23 16:35:37.840699"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Illo facere omnis occaecati?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.842725"], ["updated_at", "2020-04-23 16:35:37.842725"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laborum ut omnis reprehenderit?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.845224"], ["updated_at", "2020-04-23 16:35:37.845224"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Harum veritatis et optio?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.847863"], ["updated_at", "2020-04-23 16:35:37.847863"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Architecto eveniet voluptatibus quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.849645"], ["updated_at", "2020-04-23 16:35:37.849645"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui suscipit voluptatem est?"], ["meet_id", 1], ["created_at", "2020-04-23 16:35:37.851311"], ["updated_at", "2020-04-23 16:35:37.851311"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetingsController#destroy as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Destroy (0.1ms)[0m [1m[31mDELETE FROM "meetings" WHERE "meetings"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 710)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (3.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Animi dolorem expedita dolor."], ["created_at", "2020-04-23 16:35:37.865158"], ["updated_at", "2020-04-23 16:35:37.865158"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "neque"], ["description", "Sapiente iure quas sit."], ["created_at", "2020-04-23 16:35:37.870542"], ["updated_at", "2020-04-23 16:35:37.870542"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Ut pariatur facere ut."], ["created_at", "2020-04-23 16:35:37.871860"], ["updated_at", "2020-04-23 16:35:37.871860"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ab"], ["description", "Fugiat dolor illo quia."], ["created_at", "2020-04-23 16:35:37.873115"], ["updated_at", "2020-04-23 16:35:37.873115"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sit"], ["description", "Qui fugiat consequuntur mollitia."], ["created_at", "2020-04-23 16:35:37.874376"], ["updated_at", "2020-04-23 16:35:37.874376"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Enim culpa distinctio nam."], ["created_at", "2020-04-23 16:35:37.875612"], ["updated_at", "2020-04-23 16:35:37.875612"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Ex soluta eos totam."], ["created_at", "2020-04-23 16:35:37.876857"], ["updated_at", "2020-04-23 16:35:37.876857"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Voluptatem nostrum soluta aut."], ["created_at", "2020-04-23 16:35:37.878061"], ["updated_at", "2020-04-23 16:35:37.878061"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Esse rerum accusamus dolorum."], ["created_at", "2020-04-23 16:35:37.879226"], ["updated_at", "2020-04-23 16:35:37.879226"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eius"], ["description", "Aperiam voluptates laborum assumenda."], ["created_at", "2020-04-23 16:35:37.881089"], ["updated_at", "2020-04-23 16:35:37.881089"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.3ms | Allocations: 2224)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Omnis sit repudiandae dolore."], ["created_at", "2020-04-23 16:35:37.899083"], ["updated_at", "2020-04-23 16:35:37.899083"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Aliquid corrupti aut est."], ["created_at", "2020-04-23 16:35:37.901774"], ["updated_at", "2020-04-23 16:35:37.901774"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Suscipit eaque iusto cumque."], ["created_at", "2020-04-23 16:35:37.903574"], ["updated_at", "2020-04-23 16:35:37.903574"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Quod id molestias eum."], ["created_at", "2020-04-23 16:35:37.905665"], ["updated_at", "2020-04-23 16:35:37.905665"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Doloremque sit et officiis."], ["created_at", "2020-04-23 16:35:37.907836"], ["updated_at", "2020-04-23 16:35:37.907836"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Et ullam culpa aliquam."], ["created_at", "2020-04-23 16:35:37.909111"], ["updated_at", "2020-04-23 16:35:37.909111"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "velit"], ["description", "Est in quos alias."], ["created_at", "2020-04-23 16:35:37.910339"], ["updated_at", "2020-04-23 16:35:37.910339"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Sit iusto qui aut."], ["created_at", "2020-04-23 16:35:37.911537"], ["updated_at", "2020-04-23 16:35:37.911537"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Mollitia voluptatem consequuntur eos."], ["created_at", "2020-04-23 16:35:37.912698"], ["updated_at", "2020-04-23 16:35:37.912698"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "porro"], ["description", "Consequuntur nisi ut quo."], ["created_at", "2020-04-23 16:35:37.914527"], ["updated_at", "2020-04-23 16:35:37.914527"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms | Allocations: 2165)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Esse laboriosam aliquid vel."], ["created_at", "2020-04-23 16:35:37.931247"], ["updated_at", "2020-04-23 16:35:37.931247"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Nam quaerat tenetur dolorem."], ["created_at", "2020-04-23 16:35:37.935126"], ["updated_at", "2020-04-23 16:35:37.935126"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Sed alias neque ea."], ["created_at", "2020-04-23 16:35:37.938002"], ["updated_at", "2020-04-23 16:35:37.938002"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sit"], ["description", "Aut quia praesentium autem."], ["created_at", "2020-04-23 16:35:37.939788"], ["updated_at", "2020-04-23 16:35:37.939788"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quo"], ["description", "Dolor ea unde nihil."], ["created_at", "2020-04-23 16:35:37.941378"], ["updated_at", "2020-04-23 16:35:37.941378"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Enim et quam odio."], ["created_at", "2020-04-23 16:35:37.943655"], ["updated_at", "2020-04-23 16:35:37.943655"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "labore"], ["description", "Quia et qui sit."], ["created_at", "2020-04-23 16:35:37.946533"], ["updated_at", "2020-04-23 16:35:37.946533"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Officiis magnam explicabo distinctio."], ["created_at", "2020-04-23 16:35:37.948568"], ["updated_at", "2020-04-23 16:35:37.948568"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Aut quae iste veniam."], ["created_at", "2020-04-23 16:35:37.950055"], ["updated_at", "2020-04-23 16:35:37.950055"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Aut ut debitis eligendi."], ["created_at", "2020-04-23 16:35:37.952071"], ["updated_at", "2020-04-23 16:35:37.952071"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 393)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Ea est debitis ut."], ["created_at", "2020-04-23 16:35:37.965830"], ["updated_at", "2020-04-23 16:35:37.965830"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Quo quam laborum aspernatur."], ["created_at", "2020-04-23 16:35:37.970410"], ["updated_at", "2020-04-23 16:35:37.970410"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "unde"], ["description", "Velit repellat libero ut."], ["created_at", "2020-04-23 16:35:37.972377"], ["updated_at", "2020-04-23 16:35:37.972377"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Consequatur enim ut possimus."], ["created_at", "2020-04-23 16:35:37.973930"], ["updated_at", "2020-04-23 16:35:37.973930"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "Beatae ut nihil incidunt."], ["created_at", "2020-04-23 16:35:37.975175"], ["updated_at", "2020-04-23 16:35:37.975175"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Eligendi quia qui eos."], ["created_at", "2020-04-23 16:35:37.976475"], ["updated_at", "2020-04-23 16:35:37.976475"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sint"], ["description", "Est soluta et enim."], ["created_at", "2020-04-23 16:35:37.977688"], ["updated_at", "2020-04-23 16:35:37.977688"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sit"], ["description", "Iste dolores atque aspernatur."], ["created_at", "2020-04-23 16:35:37.978850"], ["updated_at", "2020-04-23 16:35:37.978850"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Veniam soluta quia repellat."], ["created_at", "2020-04-23 16:35:37.979988"], ["updated_at", "2020-04-23 16:35:37.979988"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "enim"], ["description", "Aspernatur sed suscipit rem."], ["created_at", "2020-04-23 16:35:37.981778"], ["updated_at", "2020-04-23 16:35:37.981778"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:35:37 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 392)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "harum"], ["description", "Unde maiores commodi voluptas."], ["created_at", "2020-04-23 16:35:37.995324"], ["updated_at", "2020-04-23 16:35:37.995324"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Dolores accusantium fuga molestiae."], ["created_at", "2020-04-23 16:35:37.998391"], ["updated_at", "2020-04-23 16:35:37.998391"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Et et veniam laboriosam."], ["created_at", "2020-04-23 16:35:37.999859"], ["updated_at", "2020-04-23 16:35:37.999859"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Sint aut laboriosam veniam."], ["created_at", "2020-04-23 16:35:38.001054"], ["updated_at", "2020-04-23 16:35:38.001054"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "possimus"], ["description", "Ut vel nam ut."], ["created_at", "2020-04-23 16:35:38.002224"], ["updated_at", "2020-04-23 16:35:38.002224"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eius"], ["description", "Consectetur odit minima nobis."], ["created_at", "2020-04-23 16:35:38.003668"], ["updated_at", "2020-04-23 16:35:38.003668"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Dignissimos nam ipsam odio."], ["created_at", "2020-04-23 16:35:38.006040"], ["updated_at", "2020-04-23 16:35:38.006040"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Debitis quis tempora error."], ["created_at", "2020-04-23 16:35:38.008070"], ["updated_at", "2020-04-23 16:35:38.008070"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Et dolor veritatis nam."], ["created_at", "2020-04-23 16:35:38.009279"], ["updated_at", "2020-04-23 16:35:38.009279"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eius"], ["description", "Officia est necessitatibus voluptate."], ["created_at", "2020-04-23 16:35:38.011030"], ["updated_at", "2020-04-23 16:35:38.011030"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:35:38 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quam"], ["description", "Sint qui mollitia et."], ["created_at", "2020-04-23 16:35:38.022859"], ["updated_at", "2020-04-23 16:35:38.022859"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nam"], ["description", "Ex perspiciatis numquam eaque."], ["created_at", "2020-04-23 16:35:38.026582"], ["updated_at", "2020-04-23 16:35:38.026582"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Illum voluptatibus rerum aut."], ["created_at", "2020-04-23 16:35:38.028431"], ["updated_at", "2020-04-23 16:35:38.028431"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Incidunt quo sunt aliquam."], ["created_at", "2020-04-23 16:35:38.029710"], ["updated_at", "2020-04-23 16:35:38.029710"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Eligendi numquam non autem."], ["created_at", "2020-04-23 16:35:38.031276"], ["updated_at", "2020-04-23 16:35:38.031276"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Voluptatem blanditiis enim libero."], ["created_at", "2020-04-23 16:35:38.032526"], ["updated_at", "2020-04-23 16:35:38.032526"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quae"], ["description", "Nesciunt nihil est totam."], ["created_at", "2020-04-23 16:35:38.033725"], ["updated_at", "2020-04-23 16:35:38.033725"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Officia quidem quia voluptatum."], ["created_at", "2020-04-23 16:35:38.034872"], ["updated_at", "2020-04-23 16:35:38.034872"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sit"], ["description", "Perspiciatis autem consectetur et."], ["created_at", "2020-04-23 16:35:38.036084"], ["updated_at", "2020-04-23 16:35:38.036084"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "magni"], ["description", "Nesciunt velit et eligendi."], ["created_at", "2020-04-23 16:35:38.037952"], ["updated_at", "2020-04-23 16:35:38.037952"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:35:38 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Est ullam voluptas quibusdam."], ["created_at", "2020-04-23 16:35:38.051045"], ["updated_at", "2020-04-23 16:35:38.051045"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Reiciendis iste sunt error."], ["created_at", "2020-04-23 16:35:38.053841"], ["updated_at", "2020-04-23 16:35:38.053841"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Dolorem excepturi eveniet aperiam."], ["created_at", "2020-04-23 16:35:38.055462"], ["updated_at", "2020-04-23 16:35:38.055462"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Nesciunt laboriosam voluptatum fugiat."], ["created_at", "2020-04-23 16:35:38.056863"], ["updated_at", "2020-04-23 16:35:38.056863"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Aut natus qui et."], ["created_at", "2020-04-23 16:35:38.058072"], ["updated_at", "2020-04-23 16:35:38.058072"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illo"], ["description", "Dolorum beatae debitis sit."], ["created_at", "2020-04-23 16:35:38.059296"], ["updated_at", "2020-04-23 16:35:38.059296"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Autem accusamus dolor excepturi."], ["created_at", "2020-04-23 16:35:38.060433"], ["updated_at", "2020-04-23 16:35:38.060433"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Dignissimos maiores rerum dolores."], ["created_at", "2020-04-23 16:35:38.061726"], ["updated_at", "2020-04-23 16:35:38.061726"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "animi"], ["description", "Necessitatibus nihil nemo facilis."], ["created_at", "2020-04-23 16:35:38.063214"], ["updated_at", "2020-04-23 16:35:38.063214"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vel"], ["description", "Deleniti repudiandae odio deserunt."], ["created_at", "2020-04-23 16:35:38.066581"], ["updated_at", "2020-04-23 16:35:38.066581"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:35:38 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 16:35:38.070084"], ["updated_at", "2020-04-23 16:35:38.070084"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 2ms (Views: 0.6ms | ActiveRecord: 0.3ms | Allocations: 731)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Voluptas illo delectus ut."], ["created_at", "2020-04-23 16:35:38.081523"], ["updated_at", "2020-04-23 16:35:38.081523"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Quaerat beatae officia necessitatibus."], ["created_at", "2020-04-23 16:35:38.085438"], ["updated_at", "2020-04-23 16:35:38.085438"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "necessitatibus"], ["description", "Molestias autem reprehenderit quam."], ["created_at", "2020-04-23 16:35:38.088135"], ["updated_at", "2020-04-23 16:35:38.088135"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Sequi occaecati quo sint."], ["created_at", "2020-04-23 16:35:38.089939"], ["updated_at", "2020-04-23 16:35:38.089939"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Autem et natus est."], ["created_at", "2020-04-23 16:35:38.091289"], ["updated_at", "2020-04-23 16:35:38.091289"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Incidunt distinctio fugiat libero."], ["created_at", "2020-04-23 16:35:38.092674"], ["updated_at", "2020-04-23 16:35:38.092674"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ea"], ["description", "Et autem consequuntur dolor."], ["created_at", "2020-04-23 16:35:38.094004"], ["updated_at", "2020-04-23 16:35:38.094004"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Placeat quae nulla quod."], ["created_at", "2020-04-23 16:35:38.095351"], ["updated_at", "2020-04-23 16:35:38.095351"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Id nemo voluptates repellendus."], ["created_at", "2020-04-23 16:35:38.096820"], ["updated_at", "2020-04-23 16:35:38.096820"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Non occaecati et voluptas."], ["created_at", "2020-04-23 16:35:38.099273"], ["updated_at", "2020-04-23 16:35:38.099273"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:35:38 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 16:35:38.101969"], ["updated_at", "2020-04-23 16:35:38.101969"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 3ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 730)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Omnis eum laboriosam sit."], ["created_at", "2020-04-23 16:35:38.114216"], ["updated_at", "2020-04-23 16:35:38.114216"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Tempore labore rerum omnis."], ["created_at", "2020-04-23 16:35:38.117250"], ["updated_at", "2020-04-23 16:35:38.117250"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Quis nulla quis est."], ["created_at", "2020-04-23 16:35:38.118804"], ["updated_at", "2020-04-23 16:35:38.118804"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Officiis in dolorem magni."], ["created_at", "2020-04-23 16:35:38.120039"], ["updated_at", "2020-04-23 16:35:38.120039"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "natus"], ["description", "Nesciunt quia soluta numquam."], ["created_at", "2020-04-23 16:35:38.121257"], ["updated_at", "2020-04-23 16:35:38.121257"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Voluptatem odit ipsam debitis."], ["created_at", "2020-04-23 16:35:38.122473"], ["updated_at", "2020-04-23 16:35:38.122473"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "neque"], ["description", "Omnis quam non iste."], ["created_at", "2020-04-23 16:35:38.123632"], ["updated_at", "2020-04-23 16:35:38.123632"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Dolorum voluptate saepe laudantium."], ["created_at", "2020-04-23 16:35:38.125668"], ["updated_at", "2020-04-23 16:35:38.125668"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Voluptatem corporis necessitatibus quo."], ["created_at", "2020-04-23 16:35:38.127750"], ["updated_at", "2020-04-23 16:35:38.127750"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Soluta quia aliquid aut."], ["created_at", "2020-04-23 16:35:38.130237"], ["updated_at", "2020-04-23 16:35:38.130237"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:35:38 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 853)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eum"], ["description", "Eos eum quo sit."], ["created_at", "2020-04-23 16:35:38.142731"], ["updated_at", "2020-04-23 16:35:38.142731"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nam"], ["description", "Ut minima qui eligendi."], ["created_at", "2020-04-23 16:35:38.146022"], ["updated_at", "2020-04-23 16:35:38.146022"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Quas consequatur aperiam nihil."], ["created_at", "2020-04-23 16:35:38.148017"], ["updated_at", "2020-04-23 16:35:38.148017"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Similique recusandae neque ut."], ["created_at", "2020-04-23 16:35:38.149377"], ["updated_at", "2020-04-23 16:35:38.149377"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "odit"], ["description", "Blanditiis ut odit sunt."], ["created_at", "2020-04-23 16:35:38.150561"], ["updated_at", "2020-04-23 16:35:38.150561"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "labore"], ["description", "Necessitatibus nulla magni quasi."], ["created_at", "2020-04-23 16:35:38.151777"], ["updated_at", "2020-04-23 16:35:38.151777"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Doloremque officia laboriosam maiores."], ["created_at", "2020-04-23 16:35:38.152917"], ["updated_at", "2020-04-23 16:35:38.152917"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nisi"], ["description", "Officia totam ipsam velit."], ["created_at", "2020-04-23 16:35:38.154125"], ["updated_at", "2020-04-23 16:35:38.154125"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Est necessitatibus id nostrum."], ["created_at", "2020-04-23 16:35:38.155402"], ["updated_at", "2020-04-23 16:35:38.155402"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Magni fuga soluta qui."], ["created_at", "2020-04-23 16:35:38.157719"], ["updated_at", "2020-04-23 16:35:38.157719"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:35:38 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 853)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "minus"], ["description", "Et eveniet nobis repellendus."], ["created_at", "2020-04-23 16:35:38.171730"], ["updated_at", "2020-04-23 16:35:38.171730"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Qui ut accusantium tempore."], ["created_at", "2020-04-23 16:35:38.174500"], ["updated_at", "2020-04-23 16:35:38.174500"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Odio doloribus deleniti laudantium."], ["created_at", "2020-04-23 16:35:38.175934"], ["updated_at", "2020-04-23 16:35:38.175934"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Sit perferendis sint velit."], ["created_at", "2020-04-23 16:35:38.177137"], ["updated_at", "2020-04-23 16:35:38.177137"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "esse"], ["description", "Quia ipsam quisquam est."], ["created_at", "2020-04-23 16:35:38.178332"], ["updated_at", "2020-04-23 16:35:38.178332"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Voluptatem quo perspiciatis nesciunt."], ["created_at", "2020-04-23 16:35:38.179688"], ["updated_at", "2020-04-23 16:35:38.179688"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sit"], ["description", "Quos quod in cum."], ["created_at", "2020-04-23 16:35:38.180847"], ["updated_at", "2020-04-23 16:35:38.180847"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eum"], ["description", "Exercitationem dolor laborum illo."], ["created_at", "2020-04-23 16:35:38.181974"], ["updated_at", "2020-04-23 16:35:38.181974"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "Molestiae consequatur et dolores."], ["created_at", "2020-04-23 16:35:38.183101"], ["updated_at", "2020-04-23 16:35:38.183101"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Et blanditiis deleniti dolore."], ["created_at", "2020-04-23 16:35:38.185123"], ["updated_at", "2020-04-23 16:35:38.185123"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:35:38 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.3ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 16:35:38.188874"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 725)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Molestiae quidem maiores ut."], ["created_at", "2020-04-23 16:35:38.199443"], ["updated_at", "2020-04-23 16:35:38.199443"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "culpa"], ["description", "A voluptates recusandae quisquam."], ["created_at", "2020-04-23 16:35:38.202300"], ["updated_at", "2020-04-23 16:35:38.202300"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Voluptas pariatur optio dignissimos."], ["created_at", "2020-04-23 16:35:38.203700"], ["updated_at", "2020-04-23 16:35:38.203700"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Deserunt exercitationem maiores non."], ["created_at", "2020-04-23 16:35:38.205885"], ["updated_at", "2020-04-23 16:35:38.205885"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vel"], ["description", "Dicta dolorum non quia."], ["created_at", "2020-04-23 16:35:38.208163"], ["updated_at", "2020-04-23 16:35:38.208163"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "adipisci"], ["description", "Consequatur quo facilis corporis."], ["created_at", "2020-04-23 16:35:38.210027"], ["updated_at", "2020-04-23 16:35:38.210027"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "maxime"], ["description", "A totam aut et."], ["created_at", "2020-04-23 16:35:38.211253"], ["updated_at", "2020-04-23 16:35:38.211253"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "earum"], ["description", "Deserunt odio vel mollitia."], ["created_at", "2020-04-23 16:35:38.212683"], ["updated_at", "2020-04-23 16:35:38.212683"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Nesciunt dolorem provident error."], ["created_at", "2020-04-23 16:35:38.214052"], ["updated_at", "2020-04-23 16:35:38.214052"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "architecto"], ["description", "Aut vel doloribus et."], ["created_at", "2020-04-23 16:35:38.216168"], ["updated_at", "2020-04-23 16:35:38.216168"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:35:38 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 16:35:38.219427"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 706)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Laboriosam in doloremque nisi."], ["created_at", "2020-04-23 16:35:38.232217"], ["updated_at", "2020-04-23 16:35:38.232217"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ex"], ["description", "Repellat tenetur illum magnam."], ["created_at", "2020-04-23 16:35:38.235711"], ["updated_at", "2020-04-23 16:35:38.235711"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Reiciendis mollitia sunt explicabo."], ["created_at", "2020-04-23 16:35:38.237622"], ["updated_at", "2020-04-23 16:35:38.237622"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Voluptatem at sit fuga."], ["created_at", "2020-04-23 16:35:38.239291"], ["updated_at", "2020-04-23 16:35:38.239291"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "provident"], ["description", "Ipsa in soluta perspiciatis."], ["created_at", "2020-04-23 16:35:38.241018"], ["updated_at", "2020-04-23 16:35:38.241018"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Nam est beatae necessitatibus."], ["created_at", "2020-04-23 16:35:38.242513"], ["updated_at", "2020-04-23 16:35:38.242513"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Iste non quo repellat."], ["created_at", "2020-04-23 16:35:38.243769"], ["updated_at", "2020-04-23 16:35:38.243769"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Voluptas est ut nulla."], ["created_at", "2020-04-23 16:35:38.246172"], ["updated_at", "2020-04-23 16:35:38.246172"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Quaerat doloremque facere eos."], ["created_at", "2020-04-23 16:35:38.248867"], ["updated_at", "2020-04-23 16:35:38.248867"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Eum exercitationem quos aperiam."], ["created_at", "2020-04-23 16:35:38.251650"], ["updated_at", "2020-04-23 16:35:38.251650"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-04-23 13:35:38 -0300
+Processing by MeetsController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mMeet Destroy (0.1ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 599)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (143.1ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (77.7ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (109.0ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rem"], ["description", "Consequuntur enim provident ut."], ["created_at", "2020-04-23 17:04:09.158058"], ["updated_at", "2020-04-23 17:04:09.158058"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Impedit vel beatae accusamus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.174371"], ["updated_at", "2020-04-23 17:04:09.174371"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusamus placeat ut temporibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.176655"], ["updated_at", "2020-04-23 17:04:09.176655"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum laudantium adipisci perspiciatis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.178261"], ["updated_at", "2020-04-23 17:04:09.178261"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquid quo est ullam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.179741"], ["updated_at", "2020-04-23 17:04:09.179741"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempora et illum doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.181232"], ["updated_at", "2020-04-23 17:04:09.181232"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem rem qui dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.182801"], ["updated_at", "2020-04-23 17:04:09.182801"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laborum laboriosam autem asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.184393"], ["updated_at", "2020-04-23 17:04:09.184393"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id facere quidem ipsum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.185907"], ["updated_at", "2020-04-23 17:04:09.185907"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur amet ullam et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.187999"], ["updated_at", "2020-04-23 17:04:09.187999"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut impedit illum quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.190575"], ["updated_at", "2020-04-23 17:04:09.190575"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint sit odit nobis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.192389"], ["updated_at", "2020-04-23 17:04:09.192389"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Illum dolorem minima consequuntur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.194251"], ["updated_at", "2020-04-23 17:04:09.194251"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "A enim laborum cum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.195841"], ["updated_at", "2020-04-23 17:04:09.195841"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae in ratione nisi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.197381"], ["updated_at", "2020-04-23 17:04:09.197381"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur ullam quidem recusandae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.198884"], ["updated_at", "2020-04-23 17:04:09.198884"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maiores itaque et ipsum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.200434"], ["updated_at", "2020-04-23 17:04:09.200434"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia ullam cumque iste?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.201964"], ["updated_at", "2020-04-23 17:04:09.201964"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Beatae consequatur inventore autem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.203689"], ["updated_at", "2020-04-23 17:04:09.203689"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut pariatur sed id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.205296"], ["updated_at", "2020-04-23 17:04:09.205296"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis enim ipsum eum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.206984"], ["updated_at", "2020-04-23 17:04:09.206984"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 22ms (Views: 7.6ms | ActiveRecord: 0.3ms | Allocations: 6213)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "similique"], ["description", "Vel iusto quas dolorem."], ["created_at", "2020-04-23 17:04:09.258139"], ["updated_at", "2020-04-23 17:04:09.258139"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt ipsam qui doloremque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.263190"], ["updated_at", "2020-04-23 17:04:09.263190"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem magni id in?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.265339"], ["updated_at", "2020-04-23 17:04:09.265339"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Illo aliquam sint et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.267081"], ["updated_at", "2020-04-23 17:04:09.267081"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quam dignissimos sit ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.269368"], ["updated_at", "2020-04-23 17:04:09.269368"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui esse iure culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.271648"], ["updated_at", "2020-04-23 17:04:09.271648"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est ducimus minima omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.273983"], ["updated_at", "2020-04-23 17:04:09.273983"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Culpa et saepe esse?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.275661"], ["updated_at", "2020-04-23 17:04:09.275661"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores voluptates excepturi enim?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.277218"], ["updated_at", "2020-04-23 17:04:09.277218"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatum nemo sint facere?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.278861"], ["updated_at", "2020-04-23 17:04:09.278861"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Atque repellat earum et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.281084"], ["updated_at", "2020-04-23 17:04:09.281084"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Praesentium voluptatum eaque corrupti?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.282798"], ["updated_at", "2020-04-23 17:04:09.282798"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cum voluptas sed odio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.284368"], ["updated_at", "2020-04-23 17:04:09.284368"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos beatae autem delectus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.285961"], ["updated_at", "2020-04-23 17:04:09.285961"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Soluta et qui alias?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.287764"], ["updated_at", "2020-04-23 17:04:09.287764"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tenetur voluptatum quos omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.289583"], ["updated_at", "2020-04-23 17:04:09.289583"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Beatae quasi illum ullam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.291148"], ["updated_at", "2020-04-23 17:04:09.291148"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Adipisci et inventore explicabo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.292743"], ["updated_at", "2020-04-23 17:04:09.292743"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non impedit magni necessitatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.294509"], ["updated_at", "2020-04-23 17:04:09.294509"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Possimus repellendus deserunt sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.296137"], ["updated_at", "2020-04-23 17:04:09.296137"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error maxime ex vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.297640"], ["updated_at", "2020-04-23 17:04:09.297640"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.2ms | Allocations: 4183)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Et ut autem sed."], ["created_at", "2020-04-23 17:04:09.321756"], ["updated_at", "2020-04-23 17:04:09.321756"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officiis esse illum officia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.325500"], ["updated_at", "2020-04-23 17:04:09.325500"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut aut dolores ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.327521"], ["updated_at", "2020-04-23 17:04:09.327521"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deserunt enim et nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.329565"], ["updated_at", "2020-04-23 17:04:09.329565"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id id cupiditate nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.331719"], ["updated_at", "2020-04-23 17:04:09.331719"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "A voluptatum ipsum illo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.333661"], ["updated_at", "2020-04-23 17:04:09.333661"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quas qui vitae eligendi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.335587"], ["updated_at", "2020-04-23 17:04:09.335587"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati aut optio quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.337155"], ["updated_at", "2020-04-23 17:04:09.337155"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugit aut ducimus officia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.338726"], ["updated_at", "2020-04-23 17:04:09.338726"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Culpa accusantium eos sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.340331"], ["updated_at", "2020-04-23 17:04:09.340331"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia voluptatem quia nobis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.342571"], ["updated_at", "2020-04-23 17:04:09.342571"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut eum aspernatur est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.344350"], ["updated_at", "2020-04-23 17:04:09.344350"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quam voluptatibus omnis nobis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.345918"], ["updated_at", "2020-04-23 17:04:09.345918"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eaque soluta ut a?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.347613"], ["updated_at", "2020-04-23 17:04:09.347613"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut similique eum adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.350459"], ["updated_at", "2020-04-23 17:04:09.350459"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut fugit non voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.352950"], ["updated_at", "2020-04-23 17:04:09.352950"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Inventore velit minus quis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.354961"], ["updated_at", "2020-04-23 17:04:09.354961"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur porro repellendus earum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.356641"], ["updated_at", "2020-04-23 17:04:09.356641"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Magni totam voluptatem et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.358327"], ["updated_at", "2020-04-23 17:04:09.358327"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus hic ut sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.359867"], ["updated_at", "2020-04-23 17:04:09.359867"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit aut expedita temporibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.361449"], ["updated_at", "2020-04-23 17:04:09.361449"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Ab aperiam ut ut."], ["created_at", "2020-04-23 17:04:09.374569"], ["updated_at", "2020-04-23 17:04:09.374569"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel beatae perspiciatis enim?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.379146"], ["updated_at", "2020-04-23 17:04:09.379146"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officia corrupti consequuntur asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.381486"], ["updated_at", "2020-04-23 17:04:09.381486"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est veniam rem eaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.383283"], ["updated_at", "2020-04-23 17:04:09.383283"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Blanditiis optio et quam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.384886"], ["updated_at", "2020-04-23 17:04:09.384886"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ab voluptas sapiente consectetur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.386412"], ["updated_at", "2020-04-23 17:04:09.386412"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et est velit repellat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.388521"], ["updated_at", "2020-04-23 17:04:09.388521"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et et aliquid et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.391702"], ["updated_at", "2020-04-23 17:04:09.391702"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Magni at est tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.393755"], ["updated_at", "2020-04-23 17:04:09.393755"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusamus maxime praesentium aliquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.395433"], ["updated_at", "2020-04-23 17:04:09.395433"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed dolor delectus reprehenderit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.397773"], ["updated_at", "2020-04-23 17:04:09.397773"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Neque non veritatis nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.399471"], ["updated_at", "2020-04-23 17:04:09.399471"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Porro dolor odit rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.401038"], ["updated_at", "2020-04-23 17:04:09.401038"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perspiciatis ducimus consequuntur ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.402720"], ["updated_at", "2020-04-23 17:04:09.402720"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates tempore non qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.404352"], ["updated_at", "2020-04-23 17:04:09.404352"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel dolores molestiae repudiandae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.405939"], ["updated_at", "2020-04-23 17:04:09.405939"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem similique asperiores cupiditate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.407510"], ["updated_at", "2020-04-23 17:04:09.407510"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iste sequi illo nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.409632"], ["updated_at", "2020-04-23 17:04:09.409632"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tenetur quibusdam beatae ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.411272"], ["updated_at", "2020-04-23 17:04:09.411272"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime vitae unde voluptatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.412882"], ["updated_at", "2020-04-23 17:04:09.412882"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Possimus rerum quasi sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.414818"], ["updated_at", "2020-04-23 17:04:09.414818"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 211)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Aspernatur accusamus non veritatis."], ["created_at", "2020-04-23 17:04:09.434146"], ["updated_at", "2020-04-23 17:04:09.434146"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui qui magnam unde?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.437845"], ["updated_at", "2020-04-23 17:04:09.437845"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut labore optio harum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.439728"], ["updated_at", "2020-04-23 17:04:09.439728"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis minus earum nulla?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.441352"], ["updated_at", "2020-04-23 17:04:09.441352"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officiis possimus quae velit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.443172"], ["updated_at", "2020-04-23 17:04:09.443172"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo nemo inventore corporis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.444848"], ["updated_at", "2020-04-23 17:04:09.444848"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquid et dolores expedita?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.446418"], ["updated_at", "2020-04-23 17:04:09.446418"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Adipisci ea dolorem sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.448033"], ["updated_at", "2020-04-23 17:04:09.448033"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus quasi voluptatem cum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.449899"], ["updated_at", "2020-04-23 17:04:09.449899"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non in soluta at?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.452266"], ["updated_at", "2020-04-23 17:04:09.452266"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et ut sapiente eos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.455436"], ["updated_at", "2020-04-23 17:04:09.455436"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In eveniet molestiae repellendus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.457436"], ["updated_at", "2020-04-23 17:04:09.457436"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ex reiciendis id voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.459178"], ["updated_at", "2020-04-23 17:04:09.459178"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis est itaque voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.460833"], ["updated_at", "2020-04-23 17:04:09.460833"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Exercitationem in et architecto?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.462465"], ["updated_at", "2020-04-23 17:04:09.462465"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptate eaque rerum sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.464220"], ["updated_at", "2020-04-23 17:04:09.464220"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Soluta et placeat sapiente?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.465871"], ["updated_at", "2020-04-23 17:04:09.465871"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est et quibusdam adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.467649"], ["updated_at", "2020-04-23 17:04:09.467649"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Suscipit sed eos ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.469839"], ["updated_at", "2020-04-23 17:04:09.469839"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed tempore sint dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.471898"], ["updated_at", "2020-04-23 17:04:09.471898"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos veniam sed dolore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.473652"], ["updated_at", "2020-04-23 17:04:09.473652"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 718)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Rerum culpa blanditiis qui."], ["created_at", "2020-04-23 17:04:09.488906"], ["updated_at", "2020-04-23 17:04:09.488906"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem porro maxime voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.493968"], ["updated_at", "2020-04-23 17:04:09.493968"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Natus blanditiis sed neque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.496331"], ["updated_at", "2020-04-23 17:04:09.496331"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Explicabo quo molestias eum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.498116"], ["updated_at", "2020-04-23 17:04:09.498116"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iure perferendis maxime et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.499746"], ["updated_at", "2020-04-23 17:04:09.499746"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Illum sint harum possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.501324"], ["updated_at", "2020-04-23 17:04:09.501324"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Provident hic ea omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.502952"], ["updated_at", "2020-04-23 17:04:09.502952"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit et fugiat voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.504647"], ["updated_at", "2020-04-23 17:04:09.504647"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis culpa eum nam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.506197"], ["updated_at", "2020-04-23 17:04:09.506197"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.0ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorum animi laboriosam et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.507859"], ["updated_at", "2020-04-23 17:04:09.507859"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Blanditiis eum est dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.511346"], ["updated_at", "2020-04-23 17:04:09.511346"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusamus consectetur quo id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.514126"], ["updated_at", "2020-04-23 17:04:09.514126"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et ut soluta voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.515980"], ["updated_at", "2020-04-23 17:04:09.515980"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nesciunt vel possimus iusto?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.517603"], ["updated_at", "2020-04-23 17:04:09.517603"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est consequuntur dolorum reprehenderit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.519415"], ["updated_at", "2020-04-23 17:04:09.519415"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non magni ratione dolorum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.521102"], ["updated_at", "2020-04-23 17:04:09.521102"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus omnis voluptas quam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.522784"], ["updated_at", "2020-04-23 17:04:09.522784"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum magni sit consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.524424"], ["updated_at", "2020-04-23 17:04:09.524424"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aspernatur inventore praesentium molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.526111"], ["updated_at", "2020-04-23 17:04:09.526111"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem amet qui aperiam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.527853"], ["updated_at", "2020-04-23 17:04:09.527853"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempore aliquam molestiae assumenda?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.529998"], ["updated_at", "2020-04-23 17:04:09.529998"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 691)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Fugit dolorem similique quo."], ["created_at", "2020-04-23 17:04:09.545269"], ["updated_at", "2020-04-23 17:04:09.545269"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis cum doloremque ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.551143"], ["updated_at", "2020-04-23 17:04:09.551143"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et sapiente qui voluptatum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.553732"], ["updated_at", "2020-04-23 17:04:09.553732"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia praesentium sequi nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.555624"], ["updated_at", "2020-04-23 17:04:09.555624"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Numquam aut dolores molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.557276"], ["updated_at", "2020-04-23 17:04:09.557276"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non quam doloribus asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.558877"], ["updated_at", "2020-04-23 17:04:09.558877"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur sit voluptatem culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.560462"], ["updated_at", "2020-04-23 17:04:09.560462"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Suscipit eos fugiat facere?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.562070"], ["updated_at", "2020-04-23 17:04:09.562070"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Exercitationem sunt libero error?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.563748"], ["updated_at", "2020-04-23 17:04:09.563748"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui at ut officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.565350"], ["updated_at", "2020-04-23 17:04:09.565350"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos cupiditate quas distinctio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.567660"], ["updated_at", "2020-04-23 17:04:09.567660"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Temporibus velit et optio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.569992"], ["updated_at", "2020-04-23 17:04:09.569992"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut sed suscipit omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.572724"], ["updated_at", "2020-04-23 17:04:09.572724"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minima voluptates quas nisi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.574992"], ["updated_at", "2020-04-23 17:04:09.574992"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis reiciendis numquam voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.576807"], ["updated_at", "2020-04-23 17:04:09.576807"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut assumenda accusamus voluptatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.578504"], ["updated_at", "2020-04-23 17:04:09.578504"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut velit laboriosam cupiditate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.580167"], ["updated_at", "2020-04-23 17:04:09.580167"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sequi eos sapiente perspiciatis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.581875"], ["updated_at", "2020-04-23 17:04:09.581875"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut est inventore et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.583665"], ["updated_at", "2020-04-23 17:04:09.583665"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut soluta dolor aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.585364"], ["updated_at", "2020-04-23 17:04:09.585364"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et eius quas accusamus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.586969"], ["updated_at", "2020-04-23 17:04:09.586969"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 583)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Delectus natus mollitia ducimus."], ["created_at", "2020-04-23 17:04:09.600561"], ["updated_at", "2020-04-23 17:04:09.600561"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Libero vero cumque minima?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.605643"], ["updated_at", "2020-04-23 17:04:09.605643"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut consequatur eos facilis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.607899"], ["updated_at", "2020-04-23 17:04:09.607899"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iure est ad neque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.610040"], ["updated_at", "2020-04-23 17:04:09.610040"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt et quia nisi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.612283"], ["updated_at", "2020-04-23 17:04:09.612283"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae reiciendis vel quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.615195"], ["updated_at", "2020-04-23 17:04:09.615195"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veniam qui repudiandae sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.617117"], ["updated_at", "2020-04-23 17:04:09.617117"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut aut qui voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.618771"], ["updated_at", "2020-04-23 17:04:09.618771"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel provident atque sequi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.620359"], ["updated_at", "2020-04-23 17:04:09.620359"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem sapiente sed sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.621982"], ["updated_at", "2020-04-23 17:04:09.621982"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Magnam fugit a illum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.624442"], ["updated_at", "2020-04-23 17:04:09.624442"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Porro excepturi et quam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.626189"], ["updated_at", "2020-04-23 17:04:09.626189"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Architecto aut voluptatem sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.627924"], ["updated_at", "2020-04-23 17:04:09.627924"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit et libero rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.630199"], ["updated_at", "2020-04-23 17:04:09.630199"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maiores quisquam reiciendis voluptatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.632560"], ["updated_at", "2020-04-23 17:04:09.632560"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ad labore quas rem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.634461"], ["updated_at", "2020-04-23 17:04:09.634461"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloremque adipisci eos qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.636255"], ["updated_at", "2020-04-23 17:04:09.636255"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil enim aliquid et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.637932"], ["updated_at", "2020-04-23 17:04:09.637932"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Alias ducimus itaque voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.639558"], ["updated_at", "2020-04-23 17:04:09.639558"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat quia autem non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.641116"], ["updated_at", "2020-04-23 17:04:09.641116"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nemo dolorem dolorem voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.642765"], ["updated_at", "2020-04-23 17:04:09.642765"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 566)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Enim eligendi delectus quaerat."], ["created_at", "2020-04-23 17:04:09.657350"], ["updated_at", "2020-04-23 17:04:09.657350"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia quas autem vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.661339"], ["updated_at", "2020-04-23 17:04:09.661339"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cupiditate est alias accusantium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.665027"], ["updated_at", "2020-04-23 17:04:09.665027"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia aut ipsum assumenda?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.668364"], ["updated_at", "2020-04-23 17:04:09.668364"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione ipsa voluptatem fugit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.672736"], ["updated_at", "2020-04-23 17:04:09.672736"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut delectus magni repellat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.677354"], ["updated_at", "2020-04-23 17:04:09.677354"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia quia pariatur sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.681020"], ["updated_at", "2020-04-23 17:04:09.681020"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsum vel aut ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.684326"], ["updated_at", "2020-04-23 17:04:09.684326"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facere at rerum unde?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.687745"], ["updated_at", "2020-04-23 17:04:09.687745"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus molestias sunt et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.691653"], ["updated_at", "2020-04-23 17:04:09.691653"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugiat sed consequatur labore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.694567"], ["updated_at", "2020-04-23 17:04:09.694567"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et nesciunt tenetur reiciendis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.696587"], ["updated_at", "2020-04-23 17:04:09.696587"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsum vel qui in?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.698262"], ["updated_at", "2020-04-23 17:04:09.698262"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis velit perspiciatis qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.699939"], ["updated_at", "2020-04-23 17:04:09.699939"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia ad consequatur tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.701660"], ["updated_at", "2020-04-23 17:04:09.701660"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odio rem vel cupiditate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.703467"], ["updated_at", "2020-04-23 17:04:09.703467"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugiat eligendi eum iste?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.705146"], ["updated_at", "2020-04-23 17:04:09.705146"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur aspernatur totam non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.706738"], ["updated_at", "2020-04-23 17:04:09.706738"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Excepturi et quidem laudantium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.708287"], ["updated_at", "2020-04-23 17:04:09.708287"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos porro et dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.710123"], ["updated_at", "2020-04-23 17:04:09.710123"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut natus fugiat aliquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.712750"], ["updated_at", "2020-04-23 17:04:09.712750"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"title"=>"Visit Narnia", "description"=>"false", "meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Visit Narnia"], ["description", "false"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.729213"], ["updated_at", "2020-04-23 17:04:09.729213"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1095)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Sapiente nobis iure praesentium."], ["created_at", "2020-04-23 17:04:09.742427"], ["updated_at", "2020-04-23 17:04:09.742427"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laborum quam aliquam dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.747853"], ["updated_at", "2020-04-23 17:04:09.747853"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Numquam sed sapiente voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.750177"], ["updated_at", "2020-04-23 17:04:09.750177"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis nulla a nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.753051"], ["updated_at", "2020-04-23 17:04:09.753051"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut et quas architecto?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.755707"], ["updated_at", "2020-04-23 17:04:09.755707"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur temporibus eveniet ab?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.757664"], ["updated_at", "2020-04-23 17:04:09.757664"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit sapiente dolorem voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.759365"], ["updated_at", "2020-04-23 17:04:09.759365"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis illum molestiae aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.760972"], ["updated_at", "2020-04-23 17:04:09.760972"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis qui dolorem et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.762636"], ["updated_at", "2020-04-23 17:04:09.762636"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique facere ad quos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.764306"], ["updated_at", "2020-04-23 17:04:09.764306"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et itaque similique aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.766691"], ["updated_at", "2020-04-23 17:04:09.766691"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit facere quos eum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.768416"], ["updated_at", "2020-04-23 17:04:09.768416"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis in suscipit aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.770531"], ["updated_at", "2020-04-23 17:04:09.770531"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et ipsam ipsum amet?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.773196"], ["updated_at", "2020-04-23 17:04:09.773196"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequuntur qui et exercitationem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.775303"], ["updated_at", "2020-04-23 17:04:09.775303"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor aspernatur voluptas fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.777069"], ["updated_at", "2020-04-23 17:04:09.777069"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui aperiam est cumque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.778776"], ["updated_at", "2020-04-23 17:04:09.778776"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et repellendus architecto nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.780437"], ["updated_at", "2020-04-23 17:04:09.780437"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Neque rerum assumenda odio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.783329"], ["updated_at", "2020-04-23 17:04:09.783329"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates non culpa consectetur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.786587"], ["updated_at", "2020-04-23 17:04:09.786587"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos deleniti et perferendis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.789853"], ["updated_at", "2020-04-23 17:04:09.789853"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1131)
+ [1m[35m (0.7ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (14.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "officia"], ["description", "Nihil iure assumenda quisquam."], ["created_at", "2020-04-23 17:04:09.819137"], ["updated_at", "2020-04-23 17:04:09.819137"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil expedita id accusamus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.827215"], ["updated_at", "2020-04-23 17:04:09.827215"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor consequatur nihil officia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.831529"], ["updated_at", "2020-04-23 17:04:09.831529"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est commodi aut ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.836292"], ["updated_at", "2020-04-23 17:04:09.836292"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ducimus quis unde et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.857054"], ["updated_at", "2020-04-23 17:04:09.857054"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laborum sequi distinctio in?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.858602"], ["updated_at", "2020-04-23 17:04:09.858602"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quasi et omnis ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.859993"], ["updated_at", "2020-04-23 17:04:09.859993"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat labore cupiditate et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.861447"], ["updated_at", "2020-04-23 17:04:09.861447"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit in vel et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.862962"], ["updated_at", "2020-04-23 17:04:09.862962"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates repudiandae alias vel?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.864420"], ["updated_at", "2020-04-23 17:04:09.864420"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui enim rerum nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.866756"], ["updated_at", "2020-04-23 17:04:09.866756"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aperiam corrupti necessitatibus quos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.868543"], ["updated_at", "2020-04-23 17:04:09.868543"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quod quidem ipsam optio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.870236"], ["updated_at", "2020-04-23 17:04:09.870236"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed recusandae nostrum illo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.872934"], ["updated_at", "2020-04-23 17:04:09.872934"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam autem in reprehenderit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.874716"], ["updated_at", "2020-04-23 17:04:09.874716"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Saepe dicta culpa quidem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.876285"], ["updated_at", "2020-04-23 17:04:09.876285"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "A qui aut eos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.877821"], ["updated_at", "2020-04-23 17:04:09.877821"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aspernatur magnam molestiae ipsum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.879350"], ["updated_at", "2020-04-23 17:04:09.879350"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis aut quia debitis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.880857"], ["updated_at", "2020-04-23 17:04:09.880857"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint deleniti in et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.882390"], ["updated_at", "2020-04-23 17:04:09.882390"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nam ipsa non et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.883928"], ["updated_at", "2020-04-23 17:04:09.883928"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1110)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quaerat"], ["description", "Numquam ut culpa repellat."], ["created_at", "2020-04-23 17:04:09.897955"], ["updated_at", "2020-04-23 17:04:09.897955"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione voluptatem cum nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.902655"], ["updated_at", "2020-04-23 17:04:09.902655"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum animi qui dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.904706"], ["updated_at", "2020-04-23 17:04:09.904706"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur animi velit molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.906478"], ["updated_at", "2020-04-23 17:04:09.906478"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsam non et consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.907980"], ["updated_at", "2020-04-23 17:04:09.907980"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptate aperiam accusantium est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.909581"], ["updated_at", "2020-04-23 17:04:09.909581"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos perferendis blanditiis veritatis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.911336"], ["updated_at", "2020-04-23 17:04:09.911336"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusantium eius commodi eveniet?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.914168"], ["updated_at", "2020-04-23 17:04:09.914168"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et fugit vero ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.916457"], ["updated_at", "2020-04-23 17:04:09.916457"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et vitae mollitia sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.918133"], ["updated_at", "2020-04-23 17:04:09.918133"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut saepe ut voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.920473"], ["updated_at", "2020-04-23 17:04:09.920473"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt omnis vel laudantium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.922114"], ["updated_at", "2020-04-23 17:04:09.922114"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta ut itaque sequi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.923825"], ["updated_at", "2020-04-23 17:04:09.923825"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati et aspernatur deserunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.925415"], ["updated_at", "2020-04-23 17:04:09.925415"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum tempora qui fuga?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.927051"], ["updated_at", "2020-04-23 17:04:09.927051"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quisquam dolorem consequatur impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.928634"], ["updated_at", "2020-04-23 17:04:09.928634"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et asperiores voluptatem vel?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.930287"], ["updated_at", "2020-04-23 17:04:09.930287"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut ipsam eos voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.932307"], ["updated_at", "2020-04-23 17:04:09.932307"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatum quidem consequatur qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.934509"], ["updated_at", "2020-04-23 17:04:09.934509"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deleniti voluptas doloribus nobis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.936290"], ["updated_at", "2020-04-23 17:04:09.936290"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus magnam beatae adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.937875"], ["updated_at", "2020-04-23 17:04:09.937875"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Update (0.2ms)[0m [1m[33mUPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ?[0m [["title", "Mozart"], ["updated_at", "2020-04-23 17:04:09.941299"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 1041)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Ducimus dolores molestiae eveniet."], ["created_at", "2020-04-23 17:04:09.952784"], ["updated_at", "2020-04-23 17:04:09.952784"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aspernatur voluptatem tenetur id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.956756"], ["updated_at", "2020-04-23 17:04:09.956756"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Magnam tempore necessitatibus et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.958628"], ["updated_at", "2020-04-23 17:04:09.958628"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis quo atque ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.960484"], ["updated_at", "2020-04-23 17:04:09.960484"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Incidunt earum minima vel?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.962149"], ["updated_at", "2020-04-23 17:04:09.962149"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea non voluptatem totam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.963802"], ["updated_at", "2020-04-23 17:04:09.963802"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut rerum eum adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.965397"], ["updated_at", "2020-04-23 17:04:09.965397"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Beatae quasi provident officia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.966978"], ["updated_at", "2020-04-23 17:04:09.966978"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem voluptatum non hic?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.968518"], ["updated_at", "2020-04-23 17:04:09.968518"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia dolor saepe sequi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.970069"], ["updated_at", "2020-04-23 17:04:09.970069"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut omnis necessitatibus quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.973428"], ["updated_at", "2020-04-23 17:04:09.973428"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis non tempore et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.975974"], ["updated_at", "2020-04-23 17:04:09.975974"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti et debitis sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.977825"], ["updated_at", "2020-04-23 17:04:09.977825"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum quam natus est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.979411"], ["updated_at", "2020-04-23 17:04:09.979411"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laudantium ut optio ipsam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.981033"], ["updated_at", "2020-04-23 17:04:09.981033"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati dolorum numquam voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.982691"], ["updated_at", "2020-04-23 17:04:09.982691"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores ut molestiae molestias?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.984235"], ["updated_at", "2020-04-23 17:04:09.984235"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ducimus natus consequatur odio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.985830"], ["updated_at", "2020-04-23 17:04:09.985830"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem molestiae et sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.987450"], ["updated_at", "2020-04-23 17:04:09.987450"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "At voluptatem aut accusamus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.989011"], ["updated_at", "2020-04-23 17:04:09.989011"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quas aut quia libero?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:09.990594"], ["updated_at", "2020-04-23 17:04:09.990594"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:04:09 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Update (0.3ms)[0m [1m[33mUPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ?[0m [["title", "Mozart"], ["updated_at", "2020-04-23 17:04:09.998308"], ["id", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 5ms (ActiveRecord: 0.7ms | Allocations: 996)
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.6ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (13.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "libero"], ["description", "Accusantium aut sequi facere."], ["created_at", "2020-04-23 17:04:10.020828"], ["updated_at", "2020-04-23 17:04:10.020828"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et voluptatibus non amet?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.027868"], ["updated_at", "2020-04-23 17:04:10.027868"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum ut vel aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.031985"], ["updated_at", "2020-04-23 17:04:10.031985"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui repellendus tenetur veniam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.036516"], ["updated_at", "2020-04-23 17:04:10.036516"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non qui voluptas ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.040679"], ["updated_at", "2020-04-23 17:04:10.040679"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut quos omnis omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.044192"], ["updated_at", "2020-04-23 17:04:10.044192"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Modi dolorem reprehenderit enim?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.047470"], ["updated_at", "2020-04-23 17:04:10.047470"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Atque impedit quis modi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.050680"], ["updated_at", "2020-04-23 17:04:10.050680"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aperiam est sit tenetur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.054162"], ["updated_at", "2020-04-23 17:04:10.054162"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.9ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Beatae itaque deleniti tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.056704"], ["updated_at", "2020-04-23 17:04:10.056704"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reprehenderit reiciendis natus et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.059788"], ["updated_at", "2020-04-23 17:04:10.059788"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui corporis perspiciatis corrupti?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.062138"], ["updated_at", "2020-04-23 17:04:10.062138"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut ullam occaecati est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.064552"], ["updated_at", "2020-04-23 17:04:10.064552"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat qui omnis voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.066705"], ["updated_at", "2020-04-23 17:04:10.066705"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem voluptates quam repellat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.068829"], ["updated_at", "2020-04-23 17:04:10.068829"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorum inventore quae ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.070951"], ["updated_at", "2020-04-23 17:04:10.070951"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos quia quas error?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.074158"], ["updated_at", "2020-04-23 17:04:10.074158"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis omnis a dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.076684"], ["updated_at", "2020-04-23 17:04:10.076684"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officiis voluptas molestiae quidem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.078901"], ["updated_at", "2020-04-23 17:04:10.078901"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et quae voluptates ea?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.081099"], ["updated_at", "2020-04-23 17:04:10.081099"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et id quam fugit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.083409"], ["updated_at", "2020-04-23 17:04:10.083409"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 567)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (10.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Et perspiciatis unde provident."], ["created_at", "2020-04-23 17:04:10.099047"], ["updated_at", "2020-04-23 17:04:10.099047"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia quos cumque sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.114756"], ["updated_at", "2020-04-23 17:04:10.114756"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit debitis incidunt in?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.118088"], ["updated_at", "2020-04-23 17:04:10.118088"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos expedita sunt aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.120564"], ["updated_at", "2020-04-23 17:04:10.120564"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatibus doloribus nihil eum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.122675"], ["updated_at", "2020-04-23 17:04:10.122675"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut odit ea optio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.124809"], ["updated_at", "2020-04-23 17:04:10.124809"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Adipisci sed beatae eligendi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.126881"], ["updated_at", "2020-04-23 17:04:10.126881"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita molestiae perspiciatis id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.128987"], ["updated_at", "2020-04-23 17:04:10.128987"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloribus reprehenderit officiis in?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.131045"], ["updated_at", "2020-04-23 17:04:10.131045"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.9ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Earum eveniet laudantium alias?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.134091"], ["updated_at", "2020-04-23 17:04:10.134091"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsum ut beatae occaecati?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.137550"], ["updated_at", "2020-04-23 17:04:10.137550"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facilis aut ratione autem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.139992"], ["updated_at", "2020-04-23 17:04:10.139992"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Soluta iure aut explicabo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.142178"], ["updated_at", "2020-04-23 17:04:10.142178"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Magni laborum nulla sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.143973"], ["updated_at", "2020-04-23 17:04:10.143973"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloremque qui quod eius?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.145655"], ["updated_at", "2020-04-23 17:04:10.145655"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis pariatur ut amet?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.147360"], ["updated_at", "2020-04-23 17:04:10.147360"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id perferendis unde nulla?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.149044"], ["updated_at", "2020-04-23 17:04:10.149044"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quasi nam non voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.150673"], ["updated_at", "2020-04-23 17:04:10.150673"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et voluptatem doloremque accusamus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.152604"], ["updated_at", "2020-04-23 17:04:10.152604"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Esse iusto est omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.155365"], ["updated_at", "2020-04-23 17:04:10.155365"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint hic non numquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.157126"], ["updated_at", "2020-04-23 17:04:10.157126"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "possimus"], ["description", "Nemo est quis nihil."], ["created_at", "2020-04-23 17:04:10.170434"], ["updated_at", "2020-04-23 17:04:10.170434"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ab rerum nisi eos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.175561"], ["updated_at", "2020-04-23 17:04:10.175561"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusamus animi reprehenderit aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.178173"], ["updated_at", "2020-04-23 17:04:10.178173"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Natus libero itaque voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.179972"], ["updated_at", "2020-04-23 17:04:10.179972"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit maxime dolores est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.181573"], ["updated_at", "2020-04-23 17:04:10.181573"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptate nam quam reprehenderit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.183269"], ["updated_at", "2020-04-23 17:04:10.183269"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cumque suscipit soluta ad?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.184875"], ["updated_at", "2020-04-23 17:04:10.184875"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perspiciatis eveniet non explicabo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.186433"], ["updated_at", "2020-04-23 17:04:10.186433"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam commodi molestiae aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.187961"], ["updated_at", "2020-04-23 17:04:10.187961"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempore inventore temporibus ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.189444"], ["updated_at", "2020-04-23 17:04:10.189444"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut ut est blanditiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.191649"], ["updated_at", "2020-04-23 17:04:10.191649"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Labore ipsum facere et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.195036"], ["updated_at", "2020-04-23 17:04:10.195036"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et est consequatur qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.197594"], ["updated_at", "2020-04-23 17:04:10.197594"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum tempore eligendi voluptatum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.199482"], ["updated_at", "2020-04-23 17:04:10.199482"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Explicabo vitae impedit nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.201111"], ["updated_at", "2020-04-23 17:04:10.201111"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Optio assumenda et maiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.202838"], ["updated_at", "2020-04-23 17:04:10.202838"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et accusantium quos dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.204489"], ["updated_at", "2020-04-23 17:04:10.204489"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit et et voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.206075"], ["updated_at", "2020-04-23 17:04:10.206075"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur hic dignissimos suscipit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.207594"], ["updated_at", "2020-04-23 17:04:10.207594"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae ex quod suscipit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.209088"], ["updated_at", "2020-04-23 17:04:10.209088"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem ut ut eaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:04:10.210842"], ["updated_at", "2020-04-23 17:04:10.210842"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetingsController#destroy as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Destroy (0.2ms)[0m [1m[31mDELETE FROM "meetings" WHERE "meetings"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 710)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Molestiae asperiores aliquam nemo."], ["created_at", "2020-04-23 17:04:10.226403"], ["updated_at", "2020-04-23 17:04:10.226403"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Et quo ut nostrum."], ["created_at", "2020-04-23 17:04:10.229889"], ["updated_at", "2020-04-23 17:04:10.229889"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "a"], ["description", "Libero tenetur exercitationem aut."], ["created_at", "2020-04-23 17:04:10.232056"], ["updated_at", "2020-04-23 17:04:10.232056"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Assumenda ea ad minima."], ["created_at", "2020-04-23 17:04:10.235120"], ["updated_at", "2020-04-23 17:04:10.235120"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Repellat consectetur dolor recusandae."], ["created_at", "2020-04-23 17:04:10.236941"], ["updated_at", "2020-04-23 17:04:10.236941"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Ea dicta facilis dolorem."], ["created_at", "2020-04-23 17:04:10.238297"], ["updated_at", "2020-04-23 17:04:10.238297"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Quo id dolor voluptatem."], ["created_at", "2020-04-23 17:04:10.239983"], ["updated_at", "2020-04-23 17:04:10.239983"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Sunt mollitia dolores labore."], ["created_at", "2020-04-23 17:04:10.241482"], ["updated_at", "2020-04-23 17:04:10.241482"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Molestiae optio in quia."], ["created_at", "2020-04-23 17:04:10.242731"], ["updated_at", "2020-04-23 17:04:10.242731"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Exercitationem dolorem est quaerat."], ["created_at", "2020-04-23 17:04:10.244605"], ["updated_at", "2020-04-23 17:04:10.244605"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.2ms | Allocations: 2226)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Ab at voluptatibus nihil."], ["created_at", "2020-04-23 17:04:10.261320"], ["updated_at", "2020-04-23 17:04:10.261320"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Aliquid recusandae eius alias."], ["created_at", "2020-04-23 17:04:10.265099"], ["updated_at", "2020-04-23 17:04:10.265099"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Temporibus consequatur hic nihil."], ["created_at", "2020-04-23 17:04:10.267011"], ["updated_at", "2020-04-23 17:04:10.267011"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Qui quos illo ad."], ["created_at", "2020-04-23 17:04:10.268299"], ["updated_at", "2020-04-23 17:04:10.268299"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Aut laboriosam aspernatur optio."], ["created_at", "2020-04-23 17:04:10.269501"], ["updated_at", "2020-04-23 17:04:10.269501"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Molestiae vel quae et."], ["created_at", "2020-04-23 17:04:10.270673"], ["updated_at", "2020-04-23 17:04:10.270673"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quos"], ["description", "Voluptatem optio sit blanditiis."], ["created_at", "2020-04-23 17:04:10.271848"], ["updated_at", "2020-04-23 17:04:10.271848"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "libero"], ["description", "Culpa sint architecto temporibus."], ["created_at", "2020-04-23 17:04:10.273485"], ["updated_at", "2020-04-23 17:04:10.273485"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Qui autem culpa magni."], ["created_at", "2020-04-23 17:04:10.275651"], ["updated_at", "2020-04-23 17:04:10.275651"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Ducimus quos quasi quis."], ["created_at", "2020-04-23 17:04:10.278250"], ["updated_at", "2020-04-23 17:04:10.278250"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms | Allocations: 2166)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Sed dolores in soluta."], ["created_at", "2020-04-23 17:04:10.294668"], ["updated_at", "2020-04-23 17:04:10.294668"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Recusandae itaque aspernatur soluta."], ["created_at", "2020-04-23 17:04:10.298400"], ["updated_at", "2020-04-23 17:04:10.298400"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Illo et expedita aut."], ["created_at", "2020-04-23 17:04:10.299788"], ["updated_at", "2020-04-23 17:04:10.299788"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Et voluptas vitae quia."], ["created_at", "2020-04-23 17:04:10.301060"], ["updated_at", "2020-04-23 17:04:10.301060"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Dolorum possimus ratione harum."], ["created_at", "2020-04-23 17:04:10.302273"], ["updated_at", "2020-04-23 17:04:10.302273"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tempora"], ["description", "Magnam veniam et et."], ["created_at", "2020-04-23 17:04:10.303605"], ["updated_at", "2020-04-23 17:04:10.303605"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Minima eum ipsa voluptas."], ["created_at", "2020-04-23 17:04:10.304778"], ["updated_at", "2020-04-23 17:04:10.304778"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Suscipit qui sed dolor."], ["created_at", "2020-04-23 17:04:10.305941"], ["updated_at", "2020-04-23 17:04:10.305941"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Tempora nihil qui sit."], ["created_at", "2020-04-23 17:04:10.307036"], ["updated_at", "2020-04-23 17:04:10.307036"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Dolorem repellat eos voluptas."], ["created_at", "2020-04-23 17:04:10.308900"], ["updated_at", "2020-04-23 17:04:10.308900"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 392)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nam"], ["description", "Et aut nesciunt maiores."], ["created_at", "2020-04-23 17:04:10.322245"], ["updated_at", "2020-04-23 17:04:10.322245"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Aut animi odit est."], ["created_at", "2020-04-23 17:04:10.325567"], ["updated_at", "2020-04-23 17:04:10.325567"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Molestiae iste modi soluta."], ["created_at", "2020-04-23 17:04:10.326931"], ["updated_at", "2020-04-23 17:04:10.326931"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quos"], ["description", "Est in qui non."], ["created_at", "2020-04-23 17:04:10.328055"], ["updated_at", "2020-04-23 17:04:10.328055"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "similique"], ["description", "At et ut modi."], ["created_at", "2020-04-23 17:04:10.329168"], ["updated_at", "2020-04-23 17:04:10.329168"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nisi"], ["description", "Et nulla ut aliquid."], ["created_at", "2020-04-23 17:04:10.330319"], ["updated_at", "2020-04-23 17:04:10.330319"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Quibusdam ut harum omnis."], ["created_at", "2020-04-23 17:04:10.331413"], ["updated_at", "2020-04-23 17:04:10.331413"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Et quam qui consequatur."], ["created_at", "2020-04-23 17:04:10.332630"], ["updated_at", "2020-04-23 17:04:10.332630"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Qui quae molestiae aut."], ["created_at", "2020-04-23 17:04:10.334766"], ["updated_at", "2020-04-23 17:04:10.334766"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "totam"], ["description", "Quis rerum esse facilis."], ["created_at", "2020-04-23 17:04:10.337522"], ["updated_at", "2020-04-23 17:04:10.337522"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 393)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Delectus voluptas sapiente molestias."], ["created_at", "2020-04-23 17:04:10.350361"], ["updated_at", "2020-04-23 17:04:10.350361"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Aut temporibus et aut."], ["created_at", "2020-04-23 17:04:10.353945"], ["updated_at", "2020-04-23 17:04:10.353945"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Molestiae sit voluptatem doloremque."], ["created_at", "2020-04-23 17:04:10.355786"], ["updated_at", "2020-04-23 17:04:10.355786"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Quis voluptas at ut."], ["created_at", "2020-04-23 17:04:10.357533"], ["updated_at", "2020-04-23 17:04:10.357533"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vero"], ["description", "Consectetur maiores reprehenderit at."], ["created_at", "2020-04-23 17:04:10.358907"], ["updated_at", "2020-04-23 17:04:10.358907"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Ex omnis ut eaque."], ["created_at", "2020-04-23 17:04:10.360078"], ["updated_at", "2020-04-23 17:04:10.360078"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Sed dolores expedita aperiam."], ["created_at", "2020-04-23 17:04:10.361251"], ["updated_at", "2020-04-23 17:04:10.361251"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "atque"], ["description", "Vero voluptatem alias voluptatem."], ["created_at", "2020-04-23 17:04:10.362487"], ["updated_at", "2020-04-23 17:04:10.362487"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Assumenda optio ratione delectus."], ["created_at", "2020-04-23 17:04:10.363762"], ["updated_at", "2020-04-23 17:04:10.363762"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Ut velit beatae quasi."], ["created_at", "2020-04-23 17:04:10.365680"], ["updated_at", "2020-04-23 17:04:10.365680"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (19.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rem"], ["description", "Molestias maiores et placeat."], ["created_at", "2020-04-23 17:04:10.391442"], ["updated_at", "2020-04-23 17:04:10.391442"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "atque"], ["description", "Nobis maiores pariatur quidem."], ["created_at", "2020-04-23 17:04:10.394820"], ["updated_at", "2020-04-23 17:04:10.394820"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Velit mollitia eius veritatis."], ["created_at", "2020-04-23 17:04:10.396535"], ["updated_at", "2020-04-23 17:04:10.396535"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "velit"], ["description", "Atque adipisci est accusantium."], ["created_at", "2020-04-23 17:04:10.398373"], ["updated_at", "2020-04-23 17:04:10.398373"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Totam molestiae laborum voluptatibus."], ["created_at", "2020-04-23 17:04:10.399684"], ["updated_at", "2020-04-23 17:04:10.399684"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vel"], ["description", "Vero voluptatibus fugiat similique."], ["created_at", "2020-04-23 17:04:10.400871"], ["updated_at", "2020-04-23 17:04:10.400871"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Deleniti et consequatur laborum."], ["created_at", "2020-04-23 17:04:10.402105"], ["updated_at", "2020-04-23 17:04:10.402105"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Molestias qui placeat non."], ["created_at", "2020-04-23 17:04:10.403324"], ["updated_at", "2020-04-23 17:04:10.403324"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Culpa maxime voluptatem fuga."], ["created_at", "2020-04-23 17:04:10.404483"], ["updated_at", "2020-04-23 17:04:10.404483"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Dolore fugiat et ipsum."], ["created_at", "2020-04-23 17:04:10.406259"], ["updated_at", "2020-04-23 17:04:10.406259"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Earum excepturi nobis repellat."], ["created_at", "2020-04-23 17:04:10.419396"], ["updated_at", "2020-04-23 17:04:10.419396"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illo"], ["description", "Eos voluptas recusandae accusantium."], ["created_at", "2020-04-23 17:04:10.422354"], ["updated_at", "2020-04-23 17:04:10.422354"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Et in dolores dolores."], ["created_at", "2020-04-23 17:04:10.424012"], ["updated_at", "2020-04-23 17:04:10.424012"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quas"], ["description", "Magnam voluptatum sit quia."], ["created_at", "2020-04-23 17:04:10.425265"], ["updated_at", "2020-04-23 17:04:10.425265"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Qui itaque eveniet voluptates."], ["created_at", "2020-04-23 17:04:10.426798"], ["updated_at", "2020-04-23 17:04:10.426798"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Autem deleniti et eveniet."], ["created_at", "2020-04-23 17:04:10.428054"], ["updated_at", "2020-04-23 17:04:10.428054"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Velit a suscipit iure."], ["created_at", "2020-04-23 17:04:10.429227"], ["updated_at", "2020-04-23 17:04:10.429227"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Ratione et laudantium repudiandae."], ["created_at", "2020-04-23 17:04:10.430391"], ["updated_at", "2020-04-23 17:04:10.430391"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Possimus harum aut dolor."], ["created_at", "2020-04-23 17:04:10.431545"], ["updated_at", "2020-04-23 17:04:10.431545"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Eum sit omnis officia."], ["created_at", "2020-04-23 17:04:10.433891"], ["updated_at", "2020-04-23 17:04:10.433891"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 17:04:10.437225"], ["updated_at", "2020-04-23 17:04:10.437225"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 3ms (Views: 0.6ms | ActiveRecord: 0.3ms | Allocations: 731)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Repellat consequatur rem qui."], ["created_at", "2020-04-23 17:04:10.448548"], ["updated_at", "2020-04-23 17:04:10.448548"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Ut ut ab aliquid."], ["created_at", "2020-04-23 17:04:10.451364"], ["updated_at", "2020-04-23 17:04:10.451364"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Veritatis quod cupiditate enim."], ["created_at", "2020-04-23 17:04:10.453423"], ["updated_at", "2020-04-23 17:04:10.453423"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Tempora quas ut ipsam."], ["created_at", "2020-04-23 17:04:10.456150"], ["updated_at", "2020-04-23 17:04:10.456150"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rem"], ["description", "Porro molestiae quod quae."], ["created_at", "2020-04-23 17:04:10.458076"], ["updated_at", "2020-04-23 17:04:10.458076"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "At et incidunt officiis."], ["created_at", "2020-04-23 17:04:10.459578"], ["updated_at", "2020-04-23 17:04:10.459578"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Delectus velit et praesentium."], ["created_at", "2020-04-23 17:04:10.460799"], ["updated_at", "2020-04-23 17:04:10.460799"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Sit veniam pariatur id."], ["created_at", "2020-04-23 17:04:10.462050"], ["updated_at", "2020-04-23 17:04:10.462050"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "iure"], ["description", "Nulla autem sunt vel."], ["created_at", "2020-04-23 17:04:10.463253"], ["updated_at", "2020-04-23 17:04:10.463253"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Enim hic fuga minima."], ["created_at", "2020-04-23 17:04:10.465094"], ["updated_at", "2020-04-23 17:04:10.465094"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 17:04:10.467609"], ["updated_at", "2020-04-23 17:04:10.467609"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 696)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eos"], ["description", "Dolor natus repellendus blanditiis."], ["created_at", "2020-04-23 17:04:10.478966"], ["updated_at", "2020-04-23 17:04:10.478966"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "animi"], ["description", "Et quo reprehenderit sunt."], ["created_at", "2020-04-23 17:04:10.481936"], ["updated_at", "2020-04-23 17:04:10.481936"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Distinctio aut aut magnam."], ["created_at", "2020-04-23 17:04:10.483627"], ["updated_at", "2020-04-23 17:04:10.483627"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quae"], ["description", "Nihil ut nisi quam."], ["created_at", "2020-04-23 17:04:10.484894"], ["updated_at", "2020-04-23 17:04:10.484894"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quae"], ["description", "Dolore sit officiis qui."], ["created_at", "2020-04-23 17:04:10.486103"], ["updated_at", "2020-04-23 17:04:10.486103"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Sint eveniet nemo aliquid."], ["created_at", "2020-04-23 17:04:10.487939"], ["updated_at", "2020-04-23 17:04:10.487939"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "libero"], ["description", "Asperiores corporis aut sunt."], ["created_at", "2020-04-23 17:04:10.489427"], ["updated_at", "2020-04-23 17:04:10.489427"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quo"], ["description", "Necessitatibus aut quia nulla."], ["created_at", "2020-04-23 17:04:10.490680"], ["updated_at", "2020-04-23 17:04:10.490680"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Nobis quasi ducimus laudantium."], ["created_at", "2020-04-23 17:04:10.492084"], ["updated_at", "2020-04-23 17:04:10.492084"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Et impedit aliquam quia."], ["created_at", "2020-04-23 17:04:10.494846"], ["updated_at", "2020-04-23 17:04:10.494846"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 853)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "architecto"], ["description", "Consequatur ad itaque illum."], ["created_at", "2020-04-23 17:04:10.508735"], ["updated_at", "2020-04-23 17:04:10.508735"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Necessitatibus dolor minima ut."], ["created_at", "2020-04-23 17:04:10.511388"], ["updated_at", "2020-04-23 17:04:10.511388"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Inventore ad et sit."], ["created_at", "2020-04-23 17:04:10.512836"], ["updated_at", "2020-04-23 17:04:10.512836"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Accusantium ducimus placeat quaerat."], ["created_at", "2020-04-23 17:04:10.514364"], ["updated_at", "2020-04-23 17:04:10.514364"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Inventore repellendus quaerat harum."], ["created_at", "2020-04-23 17:04:10.515994"], ["updated_at", "2020-04-23 17:04:10.515994"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Vel vitae deserunt quia."], ["created_at", "2020-04-23 17:04:10.517704"], ["updated_at", "2020-04-23 17:04:10.517704"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Non nihil quo nemo."], ["created_at", "2020-04-23 17:04:10.519225"], ["updated_at", "2020-04-23 17:04:10.519225"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "neque"], ["description", "Et ut debitis accusantium."], ["created_at", "2020-04-23 17:04:10.520498"], ["updated_at", "2020-04-23 17:04:10.520498"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Laborum et deleniti explicabo."], ["created_at", "2020-04-23 17:04:10.521709"], ["updated_at", "2020-04-23 17:04:10.521709"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Voluptatem et aliquam laudantium."], ["created_at", "2020-04-23 17:04:10.523675"], ["updated_at", "2020-04-23 17:04:10.523675"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 853)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Deserunt cum dolor et."], ["created_at", "2020-04-23 17:04:10.538740"], ["updated_at", "2020-04-23 17:04:10.538740"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Sequi reprehenderit cupiditate autem."], ["created_at", "2020-04-23 17:04:10.541532"], ["updated_at", "2020-04-23 17:04:10.541532"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Doloremque tempora voluptatem quod."], ["created_at", "2020-04-23 17:04:10.543007"], ["updated_at", "2020-04-23 17:04:10.543007"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eum"], ["description", "Aut vero delectus odio."], ["created_at", "2020-04-23 17:04:10.544272"], ["updated_at", "2020-04-23 17:04:10.544272"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Facilis eligendi ullam laudantium."], ["created_at", "2020-04-23 17:04:10.545456"], ["updated_at", "2020-04-23 17:04:10.545456"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vel"], ["description", "Iusto et eum quo."], ["created_at", "2020-04-23 17:04:10.546636"], ["updated_at", "2020-04-23 17:04:10.546636"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Ut dolor voluptatem quasi."], ["created_at", "2020-04-23 17:04:10.547880"], ["updated_at", "2020-04-23 17:04:10.547880"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "a"], ["description", "Tenetur eos aliquid labore."], ["created_at", "2020-04-23 17:04:10.549083"], ["updated_at", "2020-04-23 17:04:10.549083"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "non"], ["description", "Molestiae nobis ut assumenda."], ["created_at", "2020-04-23 17:04:10.550252"], ["updated_at", "2020-04-23 17:04:10.550252"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Rerum eum dolores dignissimos."], ["created_at", "2020-04-23 17:04:10.552010"], ["updated_at", "2020-04-23 17:04:10.552010"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 17:04:10.555246"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 724)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Qui maxime quod facere."], ["created_at", "2020-04-23 17:04:10.566394"], ["updated_at", "2020-04-23 17:04:10.566394"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quas"], ["description", "Et perspiciatis velit et."], ["created_at", "2020-04-23 17:04:10.569258"], ["updated_at", "2020-04-23 17:04:10.569258"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Eveniet sunt nesciunt non."], ["created_at", "2020-04-23 17:04:10.570746"], ["updated_at", "2020-04-23 17:04:10.570746"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quos"], ["description", "Non enim odit laborum."], ["created_at", "2020-04-23 17:04:10.572006"], ["updated_at", "2020-04-23 17:04:10.572006"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Libero ab ut optio."], ["created_at", "2020-04-23 17:04:10.573403"], ["updated_at", "2020-04-23 17:04:10.573403"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "provident"], ["description", "Et ipsam incidunt fugit."], ["created_at", "2020-04-23 17:04:10.575174"], ["updated_at", "2020-04-23 17:04:10.575174"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Debitis tenetur ea vel."], ["created_at", "2020-04-23 17:04:10.577321"], ["updated_at", "2020-04-23 17:04:10.577321"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "esse"], ["description", "Dolor adipisci qui debitis."], ["created_at", "2020-04-23 17:04:10.579119"], ["updated_at", "2020-04-23 17:04:10.579119"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Occaecati error provident vel."], ["created_at", "2020-04-23 17:04:10.580584"], ["updated_at", "2020-04-23 17:04:10.580584"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Expedita quasi accusantium eligendi."], ["created_at", "2020-04-23 17:04:10.582586"], ["updated_at", "2020-04-23 17:04:10.582586"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.1ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 17:04:10.585489"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 688)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (10.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cum"], ["description", "Perspiciatis amet eum rerum."], ["created_at", "2020-04-23 17:04:10.600870"], ["updated_at", "2020-04-23 17:04:10.600870"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sit"], ["description", "Eos est modi aliquid."], ["created_at", "2020-04-23 17:04:10.603910"], ["updated_at", "2020-04-23 17:04:10.603910"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "facere"], ["description", "Earum enim ad quae."], ["created_at", "2020-04-23 17:04:10.605418"], ["updated_at", "2020-04-23 17:04:10.605418"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Et delectus aperiam ut."], ["created_at", "2020-04-23 17:04:10.606728"], ["updated_at", "2020-04-23 17:04:10.606728"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "error"], ["description", "Quia accusamus dolorem aut."], ["created_at", "2020-04-23 17:04:10.608001"], ["updated_at", "2020-04-23 17:04:10.608001"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "provident"], ["description", "Nisi tempora magni sunt."], ["created_at", "2020-04-23 17:04:10.609284"], ["updated_at", "2020-04-23 17:04:10.609284"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Dolores architecto qui eum."], ["created_at", "2020-04-23 17:04:10.610552"], ["updated_at", "2020-04-23 17:04:10.610552"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "magni"], ["description", "Non laborum labore quis."], ["created_at", "2020-04-23 17:04:10.611743"], ["updated_at", "2020-04-23 17:04:10.611743"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illum"], ["description", "Cumque itaque animi quia."], ["created_at", "2020-04-23 17:04:10.613189"], ["updated_at", "2020-04-23 17:04:10.613189"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "Nulla omnis ut maiores."], ["created_at", "2020-04-23 17:04:10.615871"], ["updated_at", "2020-04-23 17:04:10.615871"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-04-23 14:04:10 -0300
+Processing by MeetsController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mMeet Destroy (0.2ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 599)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (140.8ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (136.4ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (100.6ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Error et ut cupiditate."], ["created_at", "2020-04-23 17:07:28.146637"], ["updated_at", "2020-04-23 17:07:28.146637"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In asperiores repellat dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.160375"], ["updated_at", "2020-04-23 17:07:28.160375"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo animi corporis nulla?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.162656"], ["updated_at", "2020-04-23 17:07:28.162656"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nulla molestiae iusto excepturi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.164322"], ["updated_at", "2020-04-23 17:07:28.164322"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis labore explicabo pariatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.165931"], ["updated_at", "2020-04-23 17:07:28.165931"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laborum eum maxime adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.167689"], ["updated_at", "2020-04-23 17:07:28.167689"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita quidem asperiores officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.169694"], ["updated_at", "2020-04-23 17:07:28.169694"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatum iste et qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.171597"], ["updated_at", "2020-04-23 17:07:28.171597"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea nihil eligendi velit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.173463"], ["updated_at", "2020-04-23 17:07:28.173463"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint enim provident iusto?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.175025"], ["updated_at", "2020-04-23 17:07:28.175025"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veniam inventore dolorum temporibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.177336"], ["updated_at", "2020-04-23 17:07:28.177336"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates ut autem molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.179093"], ["updated_at", "2020-04-23 17:07:28.179093"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed veniam sint illum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.180745"], ["updated_at", "2020-04-23 17:07:28.180745"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis nostrum consectetur qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.182443"], ["updated_at", "2020-04-23 17:07:28.182443"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nulla et mollitia eos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.184082"], ["updated_at", "2020-04-23 17:07:28.184082"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique ea aliquam sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.185710"], ["updated_at", "2020-04-23 17:07:28.185710"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Impedit tempore rerum ipsum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.187332"], ["updated_at", "2020-04-23 17:07:28.187332"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Beatae quaerat aut quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.189485"], ["updated_at", "2020-04-23 17:07:28.189485"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et corporis dolorem incidunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.191824"], ["updated_at", "2020-04-23 17:07:28.191824"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut ratione saepe ipsum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.193548"], ["updated_at", "2020-04-23 17:07:28.193548"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eius omnis debitis qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.195246"], ["updated_at", "2020-04-23 17:07:28.195246"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 25ms (Views: 8.7ms | ActiveRecord: 0.4ms | Allocations: 6216)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Rerum non officia nihil."], ["created_at", "2020-04-23 17:07:28.248816"], ["updated_at", "2020-04-23 17:07:28.248816"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto consequatur minima ab?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.254556"], ["updated_at", "2020-04-23 17:07:28.254556"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quod esse voluptatem quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.256772"], ["updated_at", "2020-04-23 17:07:28.256772"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur deleniti quo id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.258646"], ["updated_at", "2020-04-23 17:07:28.258646"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et quo non et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.260384"], ["updated_at", "2020-04-23 17:07:28.260384"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Saepe vel vitae qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.262121"], ["updated_at", "2020-04-23 17:07:28.262121"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et explicabo illo officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.263798"], ["updated_at", "2020-04-23 17:07:28.263798"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et voluptas excepturi voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.265550"], ["updated_at", "2020-04-23 17:07:28.265550"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Architecto laboriosam exercitationem et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.267210"], ["updated_at", "2020-04-23 17:07:28.267210"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia voluptatem minus impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.268831"], ["updated_at", "2020-04-23 17:07:28.268831"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eveniet enim reprehenderit libero?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.272713"], ["updated_at", "2020-04-23 17:07:28.272713"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odit mollitia aut laudantium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.274907"], ["updated_at", "2020-04-23 17:07:28.274907"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut ut asperiores veniam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.276594"], ["updated_at", "2020-04-23 17:07:28.276594"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique natus accusantium asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.278251"], ["updated_at", "2020-04-23 17:07:28.278251"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eaque ullam dignissimos sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.279885"], ["updated_at", "2020-04-23 17:07:28.279885"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum voluptas necessitatibus qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.281717"], ["updated_at", "2020-04-23 17:07:28.281717"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum laudantium aut sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.283422"], ["updated_at", "2020-04-23 17:07:28.283422"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nam ut odit tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.285049"], ["updated_at", "2020-04-23 17:07:28.285049"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos omnis rerum dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.286678"], ["updated_at", "2020-04-23 17:07:28.286678"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Temporibus et et neque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.288337"], ["updated_at", "2020-04-23 17:07:28.288337"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates aut dolores similique?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.290735"], ["updated_at", "2020-04-23 17:07:28.290735"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.2ms | Allocations: 4186)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Cumque sint officia atque."], ["created_at", "2020-04-23 17:07:28.314924"], ["updated_at", "2020-04-23 17:07:28.314924"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eligendi repudiandae qui iusto?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.318694"], ["updated_at", "2020-04-23 17:07:28.318694"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur quia fugiat qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.320696"], ["updated_at", "2020-04-23 17:07:28.320696"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea voluptatum dolorum molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.322442"], ["updated_at", "2020-04-23 17:07:28.322442"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Assumenda consequatur non saepe?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.324185"], ["updated_at", "2020-04-23 17:07:28.324185"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est natus molestiae quis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.325920"], ["updated_at", "2020-04-23 17:07:28.325920"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem sed fugit qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.327693"], ["updated_at", "2020-04-23 17:07:28.327693"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Explicabo minus sint culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.329517"], ["updated_at", "2020-04-23 17:07:28.329517"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Alias eveniet voluptas saepe?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.332238"], ["updated_at", "2020-04-23 17:07:28.332238"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus eius vitae corporis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.334666"], ["updated_at", "2020-04-23 17:07:28.334666"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Atque minus vero at?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.337129"], ["updated_at", "2020-04-23 17:07:28.337129"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quibusdam nihil modi labore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.338961"], ["updated_at", "2020-04-23 17:07:28.338961"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis architecto sunt aliquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.340810"], ["updated_at", "2020-04-23 17:07:28.340810"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea esse sint quidem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.342682"], ["updated_at", "2020-04-23 17:07:28.342682"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem suscipit tempore voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.344336"], ["updated_at", "2020-04-23 17:07:28.344336"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita voluptas vitae et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.346072"], ["updated_at", "2020-04-23 17:07:28.346072"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos odit consequatur rem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.347690"], ["updated_at", "2020-04-23 17:07:28.347690"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti magnam aut quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.349484"], ["updated_at", "2020-04-23 17:07:28.349484"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corporis veniam excepturi eius?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.352606"], ["updated_at", "2020-04-23 17:07:28.352606"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed et accusamus maiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.354614"], ["updated_at", "2020-04-23 17:07:28.354614"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id veniam odio mollitia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.356326"], ["updated_at", "2020-04-23 17:07:28.356326"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Perspiciatis ipsam voluptate doloremque."], ["created_at", "2020-04-23 17:07:28.368966"], ["updated_at", "2020-04-23 17:07:28.368966"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem et rerum est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.373467"], ["updated_at", "2020-04-23 17:07:28.373467"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloribus ipsam vero veniam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.375423"], ["updated_at", "2020-04-23 17:07:28.375423"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est quia ea voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.377179"], ["updated_at", "2020-04-23 17:07:28.377179"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maiores ratione ea quod?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.378815"], ["updated_at", "2020-04-23 17:07:28.378815"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Incidunt velit architecto expedita?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.380488"], ["updated_at", "2020-04-23 17:07:28.380488"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui consequatur non cumque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.382194"], ["updated_at", "2020-04-23 17:07:28.382194"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione expedita in asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.383738"], ["updated_at", "2020-04-23 17:07:28.383738"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit dolores temporibus asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.385408"], ["updated_at", "2020-04-23 17:07:28.385408"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia enim sit laudantium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.386892"], ["updated_at", "2020-04-23 17:07:28.386892"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui ea non debitis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.389286"], ["updated_at", "2020-04-23 17:07:28.389286"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo qui quia quaerat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.392261"], ["updated_at", "2020-04-23 17:07:28.392261"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum officiis aperiam iste?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.394664"], ["updated_at", "2020-04-23 17:07:28.394664"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsa libero facilis ea?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.396388"], ["updated_at", "2020-04-23 17:07:28.396388"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "A quo id voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.398092"], ["updated_at", "2020-04-23 17:07:28.398092"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Libero maiores veniam commodi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.399742"], ["updated_at", "2020-04-23 17:07:28.399742"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus deleniti itaque non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.401501"], ["updated_at", "2020-04-23 17:07:28.401501"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id sed et doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.403096"], ["updated_at", "2020-04-23 17:07:28.403096"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi nemo ratione excepturi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.404655"], ["updated_at", "2020-04-23 17:07:28.404655"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta laborum hic est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.406234"], ["updated_at", "2020-04-23 17:07:28.406234"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugit ut nisi doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.407800"], ["updated_at", "2020-04-23 17:07:28.407800"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 211)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "modi"], ["description", "Labore aut eius qui."], ["created_at", "2020-04-23 17:07:28.423838"], ["updated_at", "2020-04-23 17:07:28.423838"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia qui consectetur adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.428305"], ["updated_at", "2020-04-23 17:07:28.428305"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi optio odit nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.430694"], ["updated_at", "2020-04-23 17:07:28.430694"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia qui architecto et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.433350"], ["updated_at", "2020-04-23 17:07:28.433350"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui optio nemo quam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.435225"], ["updated_at", "2020-04-23 17:07:28.435225"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquid beatae officia in?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.437304"], ["updated_at", "2020-04-23 17:07:28.437304"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut temporibus maxime sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.439325"], ["updated_at", "2020-04-23 17:07:28.439325"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut corporis sint similique?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.441171"], ["updated_at", "2020-04-23 17:07:28.441171"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis delectus et fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.442883"], ["updated_at", "2020-04-23 17:07:28.442883"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Soluta quia eligendi voluptatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.444431"], ["updated_at", "2020-04-23 17:07:28.444431"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae et assumenda magni?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.446646"], ["updated_at", "2020-04-23 17:07:28.446646"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Suscipit eos explicabo perspiciatis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.448295"], ["updated_at", "2020-04-23 17:07:28.448295"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nesciunt dolorem aut qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.450541"], ["updated_at", "2020-04-23 17:07:28.450541"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam atque consequuntur dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.453362"], ["updated_at", "2020-04-23 17:07:28.453362"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut iure delectus voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.455913"], ["updated_at", "2020-04-23 17:07:28.455913"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Suscipit illum laudantium similique?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.458125"], ["updated_at", "2020-04-23 17:07:28.458125"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis necessitatibus hic autem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.459720"], ["updated_at", "2020-04-23 17:07:28.459720"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nulla sit hic tenetur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.461526"], ["updated_at", "2020-04-23 17:07:28.461526"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quisquam facere et laudantium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.463167"], ["updated_at", "2020-04-23 17:07:28.463167"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odio laudantium at velit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.464858"], ["updated_at", "2020-04-23 17:07:28.464858"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quam aut assumenda quos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.466400"], ["updated_at", "2020-04-23 17:07:28.466400"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 719)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Saepe quisquam enim tempore."], ["created_at", "2020-04-23 17:07:28.482155"], ["updated_at", "2020-04-23 17:07:28.482155"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint iste consequatur cupiditate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.486193"], ["updated_at", "2020-04-23 17:07:28.486193"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui rerum voluptas itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.488574"], ["updated_at", "2020-04-23 17:07:28.488574"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil incidunt praesentium dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.492564"], ["updated_at", "2020-04-23 17:07:28.492564"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut animi sapiente et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.495058"], ["updated_at", "2020-04-23 17:07:28.495058"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est ut architecto aspernatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.497348"], ["updated_at", "2020-04-23 17:07:28.497348"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae harum error et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.500150"], ["updated_at", "2020-04-23 17:07:28.500150"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quam provident molestias voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.502443"], ["updated_at", "2020-04-23 17:07:28.502443"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut vel voluptas veritatis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.504120"], ["updated_at", "2020-04-23 17:07:28.504120"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione rerum eveniet aliquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.505600"], ["updated_at", "2020-04-23 17:07:28.505600"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae possimus quas voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.507795"], ["updated_at", "2020-04-23 17:07:28.507795"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Impedit dolorem officiis porro?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.509454"], ["updated_at", "2020-04-23 17:07:28.509454"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Amet sit ut magni?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.513030"], ["updated_at", "2020-04-23 17:07:28.513030"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id quisquam suscipit sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.515617"], ["updated_at", "2020-04-23 17:07:28.515617"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Delectus explicabo unde quaerat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.518346"], ["updated_at", "2020-04-23 17:07:28.518346"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit ea nemo tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.520441"], ["updated_at", "2020-04-23 17:07:28.520441"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Earum ut odit consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.522197"], ["updated_at", "2020-04-23 17:07:28.522197"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati repellendus qui similique?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.523941"], ["updated_at", "2020-04-23 17:07:28.523941"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem quo veniam ipsum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.525698"], ["updated_at", "2020-04-23 17:07:28.525698"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis non quo mollitia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.527314"], ["updated_at", "2020-04-23 17:07:28.527314"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusantium ipsum quo libero?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.528809"], ["updated_at", "2020-04-23 17:07:28.528809"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.3ms | Allocations: 691)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Deleniti ut totam provident."], ["created_at", "2020-04-23 17:07:28.545170"], ["updated_at", "2020-04-23 17:07:28.545170"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem et sunt odit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.551493"], ["updated_at", "2020-04-23 17:07:28.551493"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cumque et non voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.558517"], ["updated_at", "2020-04-23 17:07:28.558517"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo est officiis aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.560611"], ["updated_at", "2020-04-23 17:07:28.560611"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quibusdam ad a qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.562610"], ["updated_at", "2020-04-23 17:07:28.562610"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia et sunt quaerat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.564173"], ["updated_at", "2020-04-23 17:07:28.564173"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minus eius deleniti adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.565650"], ["updated_at", "2020-04-23 17:07:28.565650"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione sit autem eveniet?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.567222"], ["updated_at", "2020-04-23 17:07:28.567222"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut sunt voluptas asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.568739"], ["updated_at", "2020-04-23 17:07:28.568739"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deserunt fugiat nobis laboriosam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.570451"], ["updated_at", "2020-04-23 17:07:28.570451"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati corporis esse id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.574387"], ["updated_at", "2020-04-23 17:07:28.574387"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptate sed molestias sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.576647"], ["updated_at", "2020-04-23 17:07:28.576647"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem iste est ad?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.578324"], ["updated_at", "2020-04-23 17:07:28.578324"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quasi sit hic et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.579981"], ["updated_at", "2020-04-23 17:07:28.579981"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quisquam porro placeat est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.581801"], ["updated_at", "2020-04-23 17:07:28.581801"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error unde accusantium culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.583427"], ["updated_at", "2020-04-23 17:07:28.583427"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Modi sint aut non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.584968"], ["updated_at", "2020-04-23 17:07:28.584968"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reiciendis eveniet unde quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.586558"], ["updated_at", "2020-04-23 17:07:28.586558"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem similique odit nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.588106"], ["updated_at", "2020-04-23 17:07:28.588106"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eligendi non sed architecto?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.589633"], ["updated_at", "2020-04-23 17:07:28.589633"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus molestiae quas atque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.592289"], ["updated_at", "2020-04-23 17:07:28.592289"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 583)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ad"], ["description", "Aliquam ea molestiae aliquid."], ["created_at", "2020-04-23 17:07:28.606158"], ["updated_at", "2020-04-23 17:07:28.606158"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita et qui inventore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.612260"], ["updated_at", "2020-04-23 17:07:28.612260"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem totam necessitatibus vel?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.614552"], ["updated_at", "2020-04-23 17:07:28.614552"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta illo voluptatum dignissimos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.616385"], ["updated_at", "2020-04-23 17:07:28.616385"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Natus laborum non non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.619065"], ["updated_at", "2020-04-23 17:07:28.619065"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Suscipit magnam neque quidem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.621057"], ["updated_at", "2020-04-23 17:07:28.621057"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsa iure fuga exercitationem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.622825"], ["updated_at", "2020-04-23 17:07:28.622825"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur maxime eum voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.624376"], ["updated_at", "2020-04-23 17:07:28.624376"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur aut deserunt enim?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.625945"], ["updated_at", "2020-04-23 17:07:28.625945"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Earum aut voluptas distinctio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.627661"], ["updated_at", "2020-04-23 17:07:28.627661"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est ipsum pariatur sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.630143"], ["updated_at", "2020-04-23 17:07:28.630143"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est eos magni id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.632990"], ["updated_at", "2020-04-23 17:07:28.632990"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nobis autem non suscipit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.635125"], ["updated_at", "2020-04-23 17:07:28.635125"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Adipisci corrupti error amet?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.636875"], ["updated_at", "2020-04-23 17:07:28.636875"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et nam nisi accusantium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.638481"], ["updated_at", "2020-04-23 17:07:28.638481"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minus consequatur nulla doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.640018"], ["updated_at", "2020-04-23 17:07:28.640018"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem est maxime neque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.641646"], ["updated_at", "2020-04-23 17:07:28.641646"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quibusdam consequatur consequuntur nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.643415"], ["updated_at", "2020-04-23 17:07:28.643415"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptate voluptatem aliquid recusandae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.645013"], ["updated_at", "2020-04-23 17:07:28.645013"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facere eaque veniam consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.646627"], ["updated_at", "2020-04-23 17:07:28.646627"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas et et in?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.648568"], ["updated_at", "2020-04-23 17:07:28.648568"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 566)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Ratione commodi aut omnis."], ["created_at", "2020-04-23 17:07:28.663060"], ["updated_at", "2020-04-23 17:07:28.663060"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati est fugiat eos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.666736"], ["updated_at", "2020-04-23 17:07:28.666736"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui aut non delectus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.668764"], ["updated_at", "2020-04-23 17:07:28.668764"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Incidunt aut distinctio hic?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.670599"], ["updated_at", "2020-04-23 17:07:28.670599"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur consequuntur odio est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.673298"], ["updated_at", "2020-04-23 17:07:28.673298"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis nobis mollitia corrupti?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.675914"], ["updated_at", "2020-04-23 17:07:28.675914"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Saepe praesentium itaque possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.677739"], ["updated_at", "2020-04-23 17:07:28.677739"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusantium ut doloremque qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.679331"], ["updated_at", "2020-04-23 17:07:28.679331"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quam culpa quis sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.680913"], ["updated_at", "2020-04-23 17:07:28.680913"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Magni architecto quam quibusdam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.682549"], ["updated_at", "2020-04-23 17:07:28.682549"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit corporis est vero?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.684809"], ["updated_at", "2020-04-23 17:07:28.684809"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor rerum sit eaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.686485"], ["updated_at", "2020-04-23 17:07:28.686485"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quod unde beatae esse?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.688128"], ["updated_at", "2020-04-23 17:07:28.688128"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Enim quos at numquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.689704"], ["updated_at", "2020-04-23 17:07:28.689704"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nemo voluptatem eius assumenda?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.692613"], ["updated_at", "2020-04-23 17:07:28.692613"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Assumenda et cum quaerat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.695711"], ["updated_at", "2020-04-23 17:07:28.695711"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint libero tempore recusandae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.697588"], ["updated_at", "2020-04-23 17:07:28.697588"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Neque minima esse mollitia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.699146"], ["updated_at", "2020-04-23 17:07:28.699146"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Unde dolores rerum rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.700824"], ["updated_at", "2020-04-23 17:07:28.700824"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Labore cumque sunt natus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.702596"], ["updated_at", "2020-04-23 17:07:28.702596"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita ut ab tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.704492"], ["updated_at", "2020-04-23 17:07:28.704492"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"title"=>"Visit Narnia", "description"=>"false", "meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Visit Narnia"], ["description", "false"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.720951"], ["updated_at", "2020-04-23 17:07:28.720951"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1127)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Aliquid iste sint quia."], ["created_at", "2020-04-23 17:07:28.734221"], ["updated_at", "2020-04-23 17:07:28.734221"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est doloremque unde eos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.738323"], ["updated_at", "2020-04-23 17:07:28.738323"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusamus voluptatum qui alias?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.740369"], ["updated_at", "2020-04-23 17:07:28.740369"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos modi porro vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.742315"], ["updated_at", "2020-04-23 17:07:28.742315"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt nesciunt quasi dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.744095"], ["updated_at", "2020-04-23 17:07:28.744095"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor quam dolore doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.745939"], ["updated_at", "2020-04-23 17:07:28.745939"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos et eligendi molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.765148"], ["updated_at", "2020-04-23 17:07:28.765148"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Enim sunt assumenda voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.767237"], ["updated_at", "2020-04-23 17:07:28.767237"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nam non porro eius?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.768945"], ["updated_at", "2020-04-23 17:07:28.768945"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed quam ut et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.770784"], ["updated_at", "2020-04-23 17:07:28.770784"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit non est error?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.774646"], ["updated_at", "2020-04-23 17:07:28.774646"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam ratione eaque consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.776838"], ["updated_at", "2020-04-23 17:07:28.776838"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptate sunt iusto et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.779256"], ["updated_at", "2020-04-23 17:07:28.779256"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellat quia dolorem velit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.781993"], ["updated_at", "2020-04-23 17:07:28.781993"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsa ea necessitatibus facilis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.783954"], ["updated_at", "2020-04-23 17:07:28.783954"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequuntur occaecati impedit ex?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.785703"], ["updated_at", "2020-04-23 17:07:28.785703"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quidem maiores excepturi sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.787349"], ["updated_at", "2020-04-23 17:07:28.787349"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis sequi qui minima?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.789147"], ["updated_at", "2020-04-23 17:07:28.789147"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et assumenda voluptatem laborum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.791190"], ["updated_at", "2020-04-23 17:07:28.791190"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Libero ab non asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.794003"], ["updated_at", "2020-04-23 17:07:28.794003"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis ipsa sunt libero?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.795964"], ["updated_at", "2020-04-23 17:07:28.795964"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1146)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "labore"], ["description", "Similique ab placeat odit."], ["created_at", "2020-04-23 17:07:28.809701"], ["updated_at", "2020-04-23 17:07:28.809701"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis possimus rerum qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.815069"], ["updated_at", "2020-04-23 17:07:28.815069"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reprehenderit quo nihil ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.817491"], ["updated_at", "2020-04-23 17:07:28.817491"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et est fuga natus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.819159"], ["updated_at", "2020-04-23 17:07:28.819159"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Soluta est similique quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.820830"], ["updated_at", "2020-04-23 17:07:28.820830"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus commodi est odio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.822583"], ["updated_at", "2020-04-23 17:07:28.822583"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Soluta ut quia accusantium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.824107"], ["updated_at", "2020-04-23 17:07:28.824107"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto dolorum iure accusamus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.825643"], ["updated_at", "2020-04-23 17:07:28.825643"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Harum sunt aperiam delectus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.827151"], ["updated_at", "2020-04-23 17:07:28.827151"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Pariatur sapiente quos quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.828669"], ["updated_at", "2020-04-23 17:07:28.828669"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cum ut quae non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.830940"], ["updated_at", "2020-04-23 17:07:28.830940"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo culpa dicta labore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.833590"], ["updated_at", "2020-04-23 17:07:28.833590"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem qui est asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.835873"], ["updated_at", "2020-04-23 17:07:28.835873"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut nemo vitae mollitia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.837962"], ["updated_at", "2020-04-23 17:07:28.837962"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Recusandae labore voluptatem unde?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.839602"], ["updated_at", "2020-04-23 17:07:28.839602"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reprehenderit delectus libero quo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.841258"], ["updated_at", "2020-04-23 17:07:28.841258"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Modi alias assumenda eaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.842996"], ["updated_at", "2020-04-23 17:07:28.842996"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est sit vero non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.844589"], ["updated_at", "2020-04-23 17:07:28.844589"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit tenetur ut sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.846370"], ["updated_at", "2020-04-23 17:07:28.846370"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatum assumenda et quis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.848138"], ["updated_at", "2020-04-23 17:07:28.848138"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et dolores ea architecto?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.849812"], ["updated_at", "2020-04-23 17:07:28.849812"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1125)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Ducimus nostrum maiores non."], ["created_at", "2020-04-23 17:07:28.865396"], ["updated_at", "2020-04-23 17:07:28.865396"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas omnis dolorem ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.869845"], ["updated_at", "2020-04-23 17:07:28.869845"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Porro et occaecati tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.871934"], ["updated_at", "2020-04-23 17:07:28.871934"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nesciunt vel veritatis maxime?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.874061"], ["updated_at", "2020-04-23 17:07:28.874061"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis ad labore qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.875752"], ["updated_at", "2020-04-23 17:07:28.875752"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maiores eveniet iste inventore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.877640"], ["updated_at", "2020-04-23 17:07:28.877640"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quam consequatur ut veniam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.879709"], ["updated_at", "2020-04-23 17:07:28.879709"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Modi exercitationem quaerat qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.881556"], ["updated_at", "2020-04-23 17:07:28.881556"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est voluptas sapiente necessitatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.883125"], ["updated_at", "2020-04-23 17:07:28.883125"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odit temporibus repellendus non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.884616"], ["updated_at", "2020-04-23 17:07:28.884616"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores quaerat vero illum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.886870"], ["updated_at", "2020-04-23 17:07:28.886870"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maiores explicabo repellat ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.888551"], ["updated_at", "2020-04-23 17:07:28.888551"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas et ipsa odit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.890072"], ["updated_at", "2020-04-23 17:07:28.890072"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed eos architecto molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.892089"], ["updated_at", "2020-04-23 17:07:28.892089"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis delectus earum aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.894658"], ["updated_at", "2020-04-23 17:07:28.894658"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sapiente suscipit sequi possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.896561"], ["updated_at", "2020-04-23 17:07:28.896561"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint et quo non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.898230"], ["updated_at", "2020-04-23 17:07:28.898230"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusantium autem et recusandae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.899734"], ["updated_at", "2020-04-23 17:07:28.899734"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta id doloribus nobis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.901466"], ["updated_at", "2020-04-23 17:07:28.901466"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum et voluptatum aspernatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.903038"], ["updated_at", "2020-04-23 17:07:28.903038"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui laboriosam suscipit quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.904573"], ["updated_at", "2020-04-23 17:07:28.904573"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Update (0.1ms)[0m [1m[33mUPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ?[0m [["title", "Mozart"], ["updated_at", "2020-04-23 17:07:28.908130"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.3ms | Allocations: 1092)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Sunt cupiditate est voluptatem."], ["created_at", "2020-04-23 17:07:28.919231"], ["updated_at", "2020-04-23 17:07:28.919231"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum asperiores sequi et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.923033"], ["updated_at", "2020-04-23 17:07:28.923033"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui sit et reprehenderit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.925383"], ["updated_at", "2020-04-23 17:07:28.925383"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum expedita et sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.927448"], ["updated_at", "2020-04-23 17:07:28.927448"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quisquam id nemo fugit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.929193"], ["updated_at", "2020-04-23 17:07:28.929193"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et quae nobis accusamus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.930698"], ["updated_at", "2020-04-23 17:07:28.930698"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Hic repellat consequatur atque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.932833"], ["updated_at", "2020-04-23 17:07:28.932833"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem natus vitae quis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.935439"], ["updated_at", "2020-04-23 17:07:28.935439"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Numquam fugit occaecati et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.937618"], ["updated_at", "2020-04-23 17:07:28.937618"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deserunt pariatur ut dignissimos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.939211"], ["updated_at", "2020-04-23 17:07:28.939211"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime dolor omnis voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.941803"], ["updated_at", "2020-04-23 17:07:28.941803"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et numquam aut error?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.943922"], ["updated_at", "2020-04-23 17:07:28.943922"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sequi labore animi itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.945560"], ["updated_at", "2020-04-23 17:07:28.945560"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Illum fugit sunt aperiam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.947158"], ["updated_at", "2020-04-23 17:07:28.947158"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Incidunt fugiat voluptas dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.948879"], ["updated_at", "2020-04-23 17:07:28.948879"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officiis voluptatem dignissimos iusto?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.950448"], ["updated_at", "2020-04-23 17:07:28.950448"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In et illum perferendis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.952411"], ["updated_at", "2020-04-23 17:07:28.952411"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laudantium nam perferendis provident?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.954643"], ["updated_at", "2020-04-23 17:07:28.954643"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ducimus consectetur corporis atque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.956753"], ["updated_at", "2020-04-23 17:07:28.956753"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum nostrum beatae non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.958677"], ["updated_at", "2020-04-23 17:07:28.958677"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Adipisci sunt omnis dignissimos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:28.961251"], ["updated_at", "2020-04-23 17:07:28.961251"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:07:28 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Update (0.1ms)[0m [1m[33mUPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ?[0m [["title", "Mozart"], ["updated_at", "2020-04-23 17:07:28.965231"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.3ms | Allocations: 1028)
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (45.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Omnis non dolorum suscipit."], ["created_at", "2020-04-23 17:07:28.982190"], ["updated_at", "2020-04-23 17:07:28.982190"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut porro alias neque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.030932"], ["updated_at", "2020-04-23 17:07:29.030932"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia aut odit ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.033255"], ["updated_at", "2020-04-23 17:07:29.033255"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime veniam deleniti possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.035747"], ["updated_at", "2020-04-23 17:07:29.035747"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vero est distinctio excepturi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.037664"], ["updated_at", "2020-04-23 17:07:29.037664"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vitae et quod saepe?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.039567"], ["updated_at", "2020-04-23 17:07:29.039567"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et quos consequuntur vel?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.042324"], ["updated_at", "2020-04-23 17:07:29.042324"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis sed laborum quaerat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.044844"], ["updated_at", "2020-04-23 17:07:29.044844"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Itaque velit sit qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.046633"], ["updated_at", "2020-04-23 17:07:29.046633"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tenetur nihil aut itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.048236"], ["updated_at", "2020-04-23 17:07:29.048236"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ullam quae quam accusamus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.050564"], ["updated_at", "2020-04-23 17:07:29.050564"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus iusto nihil temporibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.052563"], ["updated_at", "2020-04-23 17:07:29.052563"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus quis unde ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.055912"], ["updated_at", "2020-04-23 17:07:29.055912"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facere odio asperiores odit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.058374"], ["updated_at", "2020-04-23 17:07:29.058374"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sequi sit ea sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.060490"], ["updated_at", "2020-04-23 17:07:29.060490"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Pariatur exercitationem molestiae voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.063137"], ["updated_at", "2020-04-23 17:07:29.063137"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui voluptas quaerat possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.065131"], ["updated_at", "2020-04-23 17:07:29.065131"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Temporibus accusamus fuga est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.066859"], ["updated_at", "2020-04-23 17:07:29.066859"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem in quod officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.068670"], ["updated_at", "2020-04-23 17:07:29.068670"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptate quis quo eum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.070257"], ["updated_at", "2020-04-23 17:07:29.070257"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum deleniti eligendi reiciendis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.071882"], ["updated_at", "2020-04-23 17:07:29.071882"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 2ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 567)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (23.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "unde"], ["description", "Voluptas sint facilis quia."], ["created_at", "2020-04-23 17:07:29.103101"], ["updated_at", "2020-04-23 17:07:29.103101"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dignissimos inventore similique ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.106842"], ["updated_at", "2020-04-23 17:07:29.106842"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nobis aspernatur asperiores minima?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.108727"], ["updated_at", "2020-04-23 17:07:29.108727"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In qui accusantium dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.110330"], ["updated_at", "2020-04-23 17:07:29.110330"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti est qui quod?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.112116"], ["updated_at", "2020-04-23 17:07:29.112116"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Possimus mollitia et similique?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.114021"], ["updated_at", "2020-04-23 17:07:29.114021"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ab qui officiis vel?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.116381"], ["updated_at", "2020-04-23 17:07:29.116381"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis dolores et praesentium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.118746"], ["updated_at", "2020-04-23 17:07:29.118746"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptate ab nobis nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.120373"], ["updated_at", "2020-04-23 17:07:29.120373"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat reprehenderit qui eum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.122221"], ["updated_at", "2020-04-23 17:07:29.122221"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Praesentium facere dolores odit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.124539"], ["updated_at", "2020-04-23 17:07:29.124539"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique est ab totam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.126187"], ["updated_at", "2020-04-23 17:07:29.126187"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aspernatur porro ex accusamus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.127956"], ["updated_at", "2020-04-23 17:07:29.127956"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus dolores ea eligendi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.129725"], ["updated_at", "2020-04-23 17:07:29.129725"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut dicta ex ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.131360"], ["updated_at", "2020-04-23 17:07:29.131360"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minima id explicabo facilis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.133380"], ["updated_at", "2020-04-23 17:07:29.133380"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eaque voluptate dolore ipsam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.136324"], ["updated_at", "2020-04-23 17:07:29.136324"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et unde laudantium tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.138286"], ["updated_at", "2020-04-23 17:07:29.138286"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquam et omnis quae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.139902"], ["updated_at", "2020-04-23 17:07:29.139902"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut voluptate nobis debitis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.141935"], ["updated_at", "2020-04-23 17:07:29.141935"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem optio ab quis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.143819"], ["updated_at", "2020-04-23 17:07:29.143819"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Alias eligendi est vitae."], ["created_at", "2020-04-23 17:07:29.157800"], ["updated_at", "2020-04-23 17:07:29.157800"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Optio sed totam deleniti?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.161904"], ["updated_at", "2020-04-23 17:07:29.161904"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facilis aliquam adipisci culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.163899"], ["updated_at", "2020-04-23 17:07:29.163899"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea dignissimos ut et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.165857"], ["updated_at", "2020-04-23 17:07:29.165857"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi dolor deleniti mollitia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.167817"], ["updated_at", "2020-04-23 17:07:29.167817"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vero et omnis cum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.169395"], ["updated_at", "2020-04-23 17:07:29.169395"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nemo optio harum dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.170938"], ["updated_at", "2020-04-23 17:07:29.170938"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut labore animi distinctio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.172880"], ["updated_at", "2020-04-23 17:07:29.172880"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et facere eligendi earum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.175089"], ["updated_at", "2020-04-23 17:07:29.175089"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.9ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sapiente nesciunt consequatur qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.177560"], ["updated_at", "2020-04-23 17:07:29.177560"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Asperiores laudantium vel fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.180583"], ["updated_at", "2020-04-23 17:07:29.180583"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maiores nulla alias reprehenderit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.182422"], ["updated_at", "2020-04-23 17:07:29.182422"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas quia aut consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.184024"], ["updated_at", "2020-04-23 17:07:29.184024"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fuga aliquam eveniet aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.185722"], ["updated_at", "2020-04-23 17:07:29.185722"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur et occaecati id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.187338"], ["updated_at", "2020-04-23 17:07:29.187338"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit qui consequatur officia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.188975"], ["updated_at", "2020-04-23 17:07:29.188975"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempore qui magnam mollitia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.190672"], ["updated_at", "2020-04-23 17:07:29.190672"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatum aliquam aut vero?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.192435"], ["updated_at", "2020-04-23 17:07:29.192435"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos et vel minima?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.194069"], ["updated_at", "2020-04-23 17:07:29.194069"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minima iusto eligendi enim?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.196169"], ["updated_at", "2020-04-23 17:07:29.196169"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Incidunt veniam ad consectetur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:07:29.197851"], ["updated_at", "2020-04-23 17:07:29.197851"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetingsController#destroy as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Destroy (0.1ms)[0m [1m[31mDELETE FROM "meetings" WHERE "meetings"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 710)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nemo"], ["description", "Sed cupiditate nihil possimus."], ["created_at", "2020-04-23 17:07:29.211965"], ["updated_at", "2020-04-23 17:07:29.211965"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Cupiditate odit ut impedit."], ["created_at", "2020-04-23 17:07:29.216475"], ["updated_at", "2020-04-23 17:07:29.216475"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Cupiditate saepe consequuntur iste."], ["created_at", "2020-04-23 17:07:29.218538"], ["updated_at", "2020-04-23 17:07:29.218538"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Omnis ducimus perspiciatis nesciunt."], ["created_at", "2020-04-23 17:07:29.219961"], ["updated_at", "2020-04-23 17:07:29.219961"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vel"], ["description", "Est nam qui et."], ["created_at", "2020-04-23 17:07:29.221340"], ["updated_at", "2020-04-23 17:07:29.221340"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Facere sit rerum asperiores."], ["created_at", "2020-04-23 17:07:29.222612"], ["updated_at", "2020-04-23 17:07:29.222612"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Aliquid nulla voluptatem eligendi."], ["created_at", "2020-04-23 17:07:29.223860"], ["updated_at", "2020-04-23 17:07:29.223860"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Corporis voluptate incidunt et."], ["created_at", "2020-04-23 17:07:29.225160"], ["updated_at", "2020-04-23 17:07:29.225160"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "Est earum labore molestiae."], ["created_at", "2020-04-23 17:07:29.226384"], ["updated_at", "2020-04-23 17:07:29.226384"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illo"], ["description", "In molestiae doloremque minima."], ["created_at", "2020-04-23 17:07:29.228214"], ["updated_at", "2020-04-23 17:07:29.228214"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.2ms | Allocations: 2227)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "A quisquam doloribus qui."], ["created_at", "2020-04-23 17:07:29.245172"], ["updated_at", "2020-04-23 17:07:29.245172"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "similique"], ["description", "Suscipit dicta qui sequi."], ["created_at", "2020-04-23 17:07:29.248095"], ["updated_at", "2020-04-23 17:07:29.248095"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "error"], ["description", "Consequatur quasi voluptatum iste."], ["created_at", "2020-04-23 17:07:29.249550"], ["updated_at", "2020-04-23 17:07:29.249550"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Nam voluptate et recusandae."], ["created_at", "2020-04-23 17:07:29.250827"], ["updated_at", "2020-04-23 17:07:29.250827"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Earum ex molestiae magni."], ["created_at", "2020-04-23 17:07:29.252356"], ["updated_at", "2020-04-23 17:07:29.252356"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Quia aliquid rem cupiditate."], ["created_at", "2020-04-23 17:07:29.253735"], ["updated_at", "2020-04-23 17:07:29.253735"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Non omnis ut nesciunt."], ["created_at", "2020-04-23 17:07:29.255330"], ["updated_at", "2020-04-23 17:07:29.255330"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Enim ex occaecati velit."], ["created_at", "2020-04-23 17:07:29.257628"], ["updated_at", "2020-04-23 17:07:29.257628"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Enim quos excepturi vitae."], ["created_at", "2020-04-23 17:07:29.259423"], ["updated_at", "2020-04-23 17:07:29.259423"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eos"], ["description", "Ea et in temporibus."], ["created_at", "2020-04-23 17:07:29.261581"], ["updated_at", "2020-04-23 17:07:29.261581"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2167)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Doloribus recusandae non consequatur."], ["created_at", "2020-04-23 17:07:29.277854"], ["updated_at", "2020-04-23 17:07:29.277854"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Ad et dolores ut."], ["created_at", "2020-04-23 17:07:29.281306"], ["updated_at", "2020-04-23 17:07:29.281306"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "autem"], ["description", "Et autem iusto soluta."], ["created_at", "2020-04-23 17:07:29.283383"], ["updated_at", "2020-04-23 17:07:29.283383"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Adipisci et ut vel."], ["created_at", "2020-04-23 17:07:29.284597"], ["updated_at", "2020-04-23 17:07:29.284597"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Qui et nisi ut."], ["created_at", "2020-04-23 17:07:29.285807"], ["updated_at", "2020-04-23 17:07:29.285807"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illum"], ["description", "Rerum dignissimos ab non."], ["created_at", "2020-04-23 17:07:29.287040"], ["updated_at", "2020-04-23 17:07:29.287040"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Magnam nulla cupiditate alias."], ["created_at", "2020-04-23 17:07:29.288254"], ["updated_at", "2020-04-23 17:07:29.288254"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Ullam consequatur corporis beatae."], ["created_at", "2020-04-23 17:07:29.289431"], ["updated_at", "2020-04-23 17:07:29.289431"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Rerum dolor itaque eaque."], ["created_at", "2020-04-23 17:07:29.290614"], ["updated_at", "2020-04-23 17:07:29.290614"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Ut sunt tenetur iusto."], ["created_at", "2020-04-23 17:07:29.292895"], ["updated_at", "2020-04-23 17:07:29.292895"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 393)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "esse"], ["description", "Similique officia eos illum."], ["created_at", "2020-04-23 17:07:29.306874"], ["updated_at", "2020-04-23 17:07:29.306874"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quod"], ["description", "Incidunt sit facilis impedit."], ["created_at", "2020-04-23 17:07:29.310610"], ["updated_at", "2020-04-23 17:07:29.310610"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illo"], ["description", "Consequatur id ea ut."], ["created_at", "2020-04-23 17:07:29.312306"], ["updated_at", "2020-04-23 17:07:29.312306"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Est quod dolor ex."], ["created_at", "2020-04-23 17:07:29.313600"], ["updated_at", "2020-04-23 17:07:29.313600"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Incidunt eum cupiditate ea."], ["created_at", "2020-04-23 17:07:29.314810"], ["updated_at", "2020-04-23 17:07:29.314810"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Aut repellendus repellat qui."], ["created_at", "2020-04-23 17:07:29.316352"], ["updated_at", "2020-04-23 17:07:29.316352"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Dignissimos et voluptatibus qui."], ["created_at", "2020-04-23 17:07:29.317890"], ["updated_at", "2020-04-23 17:07:29.317890"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Nisi modi eius et."], ["created_at", "2020-04-23 17:07:29.319488"], ["updated_at", "2020-04-23 17:07:29.319488"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "hic"], ["description", "Iure accusamus dignissimos debitis."], ["created_at", "2020-04-23 17:07:29.320706"], ["updated_at", "2020-04-23 17:07:29.320706"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "error"], ["description", "Rerum ducimus cumque maxime."], ["created_at", "2020-04-23 17:07:29.322564"], ["updated_at", "2020-04-23 17:07:29.322564"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 393)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Blanditiis sed laborum molestias."], ["created_at", "2020-04-23 17:07:29.335486"], ["updated_at", "2020-04-23 17:07:29.335486"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nam"], ["description", "Autem nulla cum quaerat."], ["created_at", "2020-04-23 17:07:29.339512"], ["updated_at", "2020-04-23 17:07:29.339512"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Perferendis vero aliquid commodi."], ["created_at", "2020-04-23 17:07:29.341180"], ["updated_at", "2020-04-23 17:07:29.341180"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Vero nesciunt aliquam iusto."], ["created_at", "2020-04-23 17:07:29.342464"], ["updated_at", "2020-04-23 17:07:29.342464"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Nemo reprehenderit ea omnis."], ["created_at", "2020-04-23 17:07:29.343700"], ["updated_at", "2020-04-23 17:07:29.343700"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Ipsum nobis ratione eveniet."], ["created_at", "2020-04-23 17:07:29.344826"], ["updated_at", "2020-04-23 17:07:29.344826"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "doloribus"], ["description", "Qui nisi ullam ut."], ["created_at", "2020-04-23 17:07:29.346001"], ["updated_at", "2020-04-23 17:07:29.346001"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Tenetur aperiam magni corporis."], ["created_at", "2020-04-23 17:07:29.347169"], ["updated_at", "2020-04-23 17:07:29.347169"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "error"], ["description", "Sit vel adipisci accusamus."], ["created_at", "2020-04-23 17:07:29.348650"], ["updated_at", "2020-04-23 17:07:29.348650"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Sequi repellendus hic et."], ["created_at", "2020-04-23 17:07:29.350903"], ["updated_at", "2020-04-23 17:07:29.350903"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Possimus sint temporibus optio."], ["created_at", "2020-04-23 17:07:29.363438"], ["updated_at", "2020-04-23 17:07:29.363438"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Iusto voluptatem beatae nihil."], ["created_at", "2020-04-23 17:07:29.366261"], ["updated_at", "2020-04-23 17:07:29.366261"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "animi"], ["description", "Et exercitationem cum ratione."], ["created_at", "2020-04-23 17:07:29.367785"], ["updated_at", "2020-04-23 17:07:29.367785"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Dolorum dolor sint sequi."], ["created_at", "2020-04-23 17:07:29.369026"], ["updated_at", "2020-04-23 17:07:29.369026"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Necessitatibus delectus sapiente dolorem."], ["created_at", "2020-04-23 17:07:29.370198"], ["updated_at", "2020-04-23 17:07:29.370198"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Officiis corrupti sed quidem."], ["created_at", "2020-04-23 17:07:29.371506"], ["updated_at", "2020-04-23 17:07:29.371506"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Dolor sit deleniti illo."], ["created_at", "2020-04-23 17:07:29.372907"], ["updated_at", "2020-04-23 17:07:29.372907"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "magni"], ["description", "Iste occaecati est mollitia."], ["created_at", "2020-04-23 17:07:29.374151"], ["updated_at", "2020-04-23 17:07:29.374151"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eius"], ["description", "Culpa consequatur natus cupiditate."], ["created_at", "2020-04-23 17:07:29.375514"], ["updated_at", "2020-04-23 17:07:29.375514"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Accusantium aspernatur quia pariatur."], ["created_at", "2020-04-23 17:07:29.378311"], ["updated_at", "2020-04-23 17:07:29.378311"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Qui beatae aliquid occaecati."], ["created_at", "2020-04-23 17:07:29.392922"], ["updated_at", "2020-04-23 17:07:29.392922"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Numquam ullam non et."], ["created_at", "2020-04-23 17:07:29.396599"], ["updated_at", "2020-04-23 17:07:29.396599"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Eos sapiente labore soluta."], ["created_at", "2020-04-23 17:07:29.398417"], ["updated_at", "2020-04-23 17:07:29.398417"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Iure quo possimus sequi."], ["created_at", "2020-04-23 17:07:29.400228"], ["updated_at", "2020-04-23 17:07:29.400228"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Culpa nihil eaque distinctio."], ["created_at", "2020-04-23 17:07:29.401640"], ["updated_at", "2020-04-23 17:07:29.401640"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "modi"], ["description", "Id cupiditate ducimus harum."], ["created_at", "2020-04-23 17:07:29.402922"], ["updated_at", "2020-04-23 17:07:29.402922"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Eos doloremque repudiandae dolores."], ["created_at", "2020-04-23 17:07:29.404101"], ["updated_at", "2020-04-23 17:07:29.404101"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Incidunt repellat minima laborum."], ["created_at", "2020-04-23 17:07:29.405303"], ["updated_at", "2020-04-23 17:07:29.405303"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Voluptate nisi sed hic."], ["created_at", "2020-04-23 17:07:29.406474"], ["updated_at", "2020-04-23 17:07:29.406474"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Voluptatem consequuntur et tenetur."], ["created_at", "2020-04-23 17:07:29.408321"], ["updated_at", "2020-04-23 17:07:29.408321"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 17:07:29.410804"], ["updated_at", "2020-04-23 17:07:29.410804"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 2ms (Views: 0.7ms | ActiveRecord: 0.3ms | Allocations: 731)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Consequuntur veniam quia necessitatibus."], ["created_at", "2020-04-23 17:07:29.423010"], ["updated_at", "2020-04-23 17:07:29.423010"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Cumque pariatur repellendus aut."], ["created_at", "2020-04-23 17:07:29.426930"], ["updated_at", "2020-04-23 17:07:29.426930"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Expedita aut saepe explicabo."], ["created_at", "2020-04-23 17:07:29.428370"], ["updated_at", "2020-04-23 17:07:29.428370"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Quia numquam ut aut."], ["created_at", "2020-04-23 17:07:29.429569"], ["updated_at", "2020-04-23 17:07:29.429569"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "velit"], ["description", "Voluptas rerum provident perspiciatis."], ["created_at", "2020-04-23 17:07:29.430806"], ["updated_at", "2020-04-23 17:07:29.430806"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Ipsam delectus et eius."], ["created_at", "2020-04-23 17:07:29.432036"], ["updated_at", "2020-04-23 17:07:29.432036"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quis"], ["description", "Sed id facilis mollitia."], ["created_at", "2020-04-23 17:07:29.433178"], ["updated_at", "2020-04-23 17:07:29.433178"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "officia"], ["description", "Eum aliquam quas eius."], ["created_at", "2020-04-23 17:07:29.434310"], ["updated_at", "2020-04-23 17:07:29.434310"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "iste"], ["description", "Animi illum quis iste."], ["created_at", "2020-04-23 17:07:29.435391"], ["updated_at", "2020-04-23 17:07:29.435391"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Quia sint sit tempore."], ["created_at", "2020-04-23 17:07:29.437564"], ["updated_at", "2020-04-23 17:07:29.437564"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 17:07:29.440626"], ["updated_at", "2020-04-23 17:07:29.440626"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 2ms (Views: 0.6ms | ActiveRecord: 0.3ms | Allocations: 730)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Consequatur earum exercitationem omnis."], ["created_at", "2020-04-23 17:07:29.452265"], ["updated_at", "2020-04-23 17:07:29.452265"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Aut cupiditate ex accusamus."], ["created_at", "2020-04-23 17:07:29.455272"], ["updated_at", "2020-04-23 17:07:29.455272"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Impedit eum autem sunt."], ["created_at", "2020-04-23 17:07:29.457545"], ["updated_at", "2020-04-23 17:07:29.457545"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Omnis saepe voluptatum quae."], ["created_at", "2020-04-23 17:07:29.459517"], ["updated_at", "2020-04-23 17:07:29.459517"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Sit sapiente officiis ullam."], ["created_at", "2020-04-23 17:07:29.461240"], ["updated_at", "2020-04-23 17:07:29.461240"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Eos expedita et molestiae."], ["created_at", "2020-04-23 17:07:29.462545"], ["updated_at", "2020-04-23 17:07:29.462545"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Doloremque aut ea repellendus."], ["created_at", "2020-04-23 17:07:29.463736"], ["updated_at", "2020-04-23 17:07:29.463736"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Culpa voluptas laboriosam reiciendis."], ["created_at", "2020-04-23 17:07:29.464899"], ["updated_at", "2020-04-23 17:07:29.464899"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Nobis quia odit a."], ["created_at", "2020-04-23 17:07:29.466044"], ["updated_at", "2020-04-23 17:07:29.466044"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "beatae"], ["description", "Quia alias aperiam quidem."], ["created_at", "2020-04-23 17:07:29.468095"], ["updated_at", "2020-04-23 17:07:29.468095"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 853)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Quos soluta numquam ut."], ["created_at", "2020-04-23 17:07:29.481469"], ["updated_at", "2020-04-23 17:07:29.481469"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "et"], ["description", "Ex porro error veniam."], ["created_at", "2020-04-23 17:07:29.484460"], ["updated_at", "2020-04-23 17:07:29.484460"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "in"], ["description", "Repellendus sapiente eaque illum."], ["created_at", "2020-04-23 17:07:29.485953"], ["updated_at", "2020-04-23 17:07:29.485953"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "natus"], ["description", "Sapiente debitis ipsam maiores."], ["created_at", "2020-04-23 17:07:29.487542"], ["updated_at", "2020-04-23 17:07:29.487542"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Deleniti corporis quo est."], ["created_at", "2020-04-23 17:07:29.489125"], ["updated_at", "2020-04-23 17:07:29.489125"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "qui"], ["description", "Incidunt provident illo assumenda."], ["created_at", "2020-04-23 17:07:29.490530"], ["updated_at", "2020-04-23 17:07:29.490530"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "facere"], ["description", "Ullam saepe cupiditate minus."], ["created_at", "2020-04-23 17:07:29.492241"], ["updated_at", "2020-04-23 17:07:29.492241"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "Rem voluptas labore quasi."], ["created_at", "2020-04-23 17:07:29.493884"], ["updated_at", "2020-04-23 17:07:29.493884"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Est officiis deleniti minima."], ["created_at", "2020-04-23 17:07:29.495130"], ["updated_at", "2020-04-23 17:07:29.495130"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "id"], ["description", "Voluptatum esse est rerum."], ["created_at", "2020-04-23 17:07:29.497990"], ["updated_at", "2020-04-23 17:07:29.497990"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 853)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Nemo eveniet dolor sit."], ["created_at", "2020-04-23 17:07:29.511731"], ["updated_at", "2020-04-23 17:07:29.511731"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Non in tempore laboriosam."], ["created_at", "2020-04-23 17:07:29.514540"], ["updated_at", "2020-04-23 17:07:29.514540"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "autem"], ["description", "Rerum cumque recusandae impedit."], ["created_at", "2020-04-23 17:07:29.516076"], ["updated_at", "2020-04-23 17:07:29.516076"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Ut sint laboriosam minima."], ["created_at", "2020-04-23 17:07:29.517826"], ["updated_at", "2020-04-23 17:07:29.517826"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "libero"], ["description", "Voluptatibus consequatur suscipit velit."], ["created_at", "2020-04-23 17:07:29.519546"], ["updated_at", "2020-04-23 17:07:29.519546"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Rerum dolorem totam deleniti."], ["created_at", "2020-04-23 17:07:29.520936"], ["updated_at", "2020-04-23 17:07:29.520936"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Sit ad animi id."], ["created_at", "2020-04-23 17:07:29.522152"], ["updated_at", "2020-04-23 17:07:29.522152"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "necessitatibus"], ["description", "Quas aliquam minus illum."], ["created_at", "2020-04-23 17:07:29.523335"], ["updated_at", "2020-04-23 17:07:29.523335"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "vel"], ["description", "Perferendis facere expedita autem."], ["created_at", "2020-04-23 17:07:29.524447"], ["updated_at", "2020-04-23 17:07:29.524447"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Natus suscipit iste libero."], ["created_at", "2020-04-23 17:07:29.526145"], ["updated_at", "2020-04-23 17:07:29.526145"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 17:07:29.528975"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 724)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (15.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "similique"], ["description", "Harum sequi corrupti enim."], ["created_at", "2020-04-23 17:07:29.540206"], ["updated_at", "2020-04-23 17:07:29.540206"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Dignissimos est expedita incidunt."], ["created_at", "2020-04-23 17:07:29.557780"], ["updated_at", "2020-04-23 17:07:29.557780"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "illo"], ["description", "Deleniti est soluta consequuntur."], ["created_at", "2020-04-23 17:07:29.559814"], ["updated_at", "2020-04-23 17:07:29.559814"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Exercitationem eum quaerat quae."], ["created_at", "2020-04-23 17:07:29.561482"], ["updated_at", "2020-04-23 17:07:29.561482"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Aut ut et perferendis."], ["created_at", "2020-04-23 17:07:29.562873"], ["updated_at", "2020-04-23 17:07:29.562873"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "quia"], ["description", "Provident veniam qui id."], ["created_at", "2020-04-23 17:07:29.564039"], ["updated_at", "2020-04-23 17:07:29.564039"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nemo"], ["description", "Debitis ipsa sit ullam."], ["created_at", "2020-04-23 17:07:29.565289"], ["updated_at", "2020-04-23 17:07:29.565289"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sed"], ["description", "Qui dolorem tempore laborum."], ["created_at", "2020-04-23 17:07:29.566656"], ["updated_at", "2020-04-23 17:07:29.566656"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Sapiente eos quisquam non."], ["created_at", "2020-04-23 17:07:29.568351"], ["updated_at", "2020-04-23 17:07:29.568351"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Voluptatem dolores accusantium aut."], ["created_at", "2020-04-23 17:07:29.570921"], ["updated_at", "2020-04-23 17:07:29.570921"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 17:07:29.574557"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 706)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Maiores fugit quis repellat."], ["created_at", "2020-04-23 17:07:29.588775"], ["updated_at", "2020-04-23 17:07:29.588775"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "atque"], ["description", "Officia labore sit explicabo."], ["created_at", "2020-04-23 17:07:29.592931"], ["updated_at", "2020-04-23 17:07:29.592931"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "ut"], ["description", "Voluptatem ut magnam aut."], ["created_at", "2020-04-23 17:07:29.594738"], ["updated_at", "2020-04-23 17:07:29.594738"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "modi"], ["description", "Corporis non saepe earum."], ["created_at", "2020-04-23 17:07:29.596727"], ["updated_at", "2020-04-23 17:07:29.596727"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "est"], ["description", "Sit dolor ducimus voluptas."], ["created_at", "2020-04-23 17:07:29.598579"], ["updated_at", "2020-04-23 17:07:29.598579"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Nisi quis rem fuga."], ["created_at", "2020-04-23 17:07:29.600039"], ["updated_at", "2020-04-23 17:07:29.600039"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "sint"], ["description", "Modi beatae eligendi culpa."], ["created_at", "2020-04-23 17:07:29.602014"], ["updated_at", "2020-04-23 17:07:29.602014"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "aut"], ["description", "Voluptatem accusantium aut magnam."], ["created_at", "2020-04-23 17:07:29.603766"], ["updated_at", "2020-04-23 17:07:29.603766"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "similique"], ["description", "Quaerat mollitia officia libero."], ["created_at", "2020-04-23 17:07:29.605130"], ["updated_at", "2020-04-23 17:07:29.605130"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Velit nisi mollitia eos."], ["created_at", "2020-04-23 17:07:29.607215"], ["updated_at", "2020-04-23 17:07:29.607215"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-04-23 14:07:29 -0300
+Processing by MeetsController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mMeet Destroy (0.2ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 599)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (42.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (3.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (3.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to AddCreatedByToMeets (20200423170909)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (55.2ms)[0m [1m[35mALTER TABLE "meets" ADD "created_by" varchar[0m
+ [1m[36mprimary::SchemaMigration Create (0.6ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423170909"]]
+ [1m[35m (166.8ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.9ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (3.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (134.0ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (84.7ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (85.7ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (5.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "In est modi velit."], ["created_at", "2020-04-23 17:13:13.085730"], ["updated_at", "2020-04-23 17:13:13.085730"], ["created_by", "8835018046"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi mollitia ullam laborum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.104372"], ["updated_at", "2020-04-23 17:13:13.104372"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deleniti error assumenda quis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.107410"], ["updated_at", "2020-04-23 17:13:13.107410"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error deserunt ratione voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.111275"], ["updated_at", "2020-04-23 17:13:13.111275"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquid dolorem facere et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.113159"], ["updated_at", "2020-04-23 17:13:13.113159"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto maxime reprehenderit itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.114915"], ["updated_at", "2020-04-23 17:13:13.114915"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos occaecati et unde?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.116552"], ["updated_at", "2020-04-23 17:13:13.116552"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Harum impedit ipsam provident?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.120771"], ["updated_at", "2020-04-23 17:13:13.120771"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusamus est facilis rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.123686"], ["updated_at", "2020-04-23 17:13:13.123686"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut eos dignissimos voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.125465"], ["updated_at", "2020-04-23 17:13:13.125465"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis autem ipsum explicabo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.128766"], ["updated_at", "2020-04-23 17:13:13.128766"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique veniam repellendus sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.131011"], ["updated_at", "2020-04-23 17:13:13.131011"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia praesentium vel dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.132835"], ["updated_at", "2020-04-23 17:13:13.132835"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores quia delectus ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.134475"], ["updated_at", "2020-04-23 17:13:13.134475"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Magni suscipit inventore quis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.136289"], ["updated_at", "2020-04-23 17:13:13.136289"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat fugit vero dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.138738"], ["updated_at", "2020-04-23 17:13:13.138738"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quos numquam voluptatem fuga?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.140592"], ["updated_at", "2020-04-23 17:13:13.140592"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto impedit iste eligendi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.142357"], ["updated_at", "2020-04-23 17:13:13.142357"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatibus dignissimos alias ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.144675"], ["updated_at", "2020-04-23 17:13:13.144675"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam cumque minus quis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.146426"], ["updated_at", "2020-04-23 17:13:13.146426"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui officia sunt veniam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.148091"], ["updated_at", "2020-04-23 17:13:13.148091"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:13:13 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.4ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 23ms (Views: 8.5ms | ActiveRecord: 0.5ms | Allocations: 6222)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "eius"], ["description", "Doloremque et aliquid et."], ["created_at", "2020-04-23 17:13:13.204254"], ["updated_at", "2020-04-23 17:13:13.204254"], ["created_by", "7428860730"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae doloribus numquam eaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.208652"], ["updated_at", "2020-04-23 17:13:13.208652"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates iste in commodi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.211394"], ["updated_at", "2020-04-23 17:13:13.211394"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit est sapiente est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.213295"], ["updated_at", "2020-04-23 17:13:13.213295"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempore cumque consequuntur quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.214928"], ["updated_at", "2020-04-23 17:13:13.214928"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error enim porro ea?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.216497"], ["updated_at", "2020-04-23 17:13:13.216497"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non quas velit expedita?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.218598"], ["updated_at", "2020-04-23 17:13:13.218598"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repudiandae veritatis culpa deleniti?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.220940"], ["updated_at", "2020-04-23 17:13:13.220940"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea dolor consequatur delectus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.222800"], ["updated_at", "2020-04-23 17:13:13.222800"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et eos laudantium vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.224808"], ["updated_at", "2020-04-23 17:13:13.224808"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem veniam voluptates possimus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.228292"], ["updated_at", "2020-04-23 17:13:13.228292"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem dolore aut vel?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.231560"], ["updated_at", "2020-04-23 17:13:13.231560"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et maxime vel excepturi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.233644"], ["updated_at", "2020-04-23 17:13:13.233644"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quasi odio suscipit tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.235424"], ["updated_at", "2020-04-23 17:13:13.235424"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quam id maxime repellat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.237294"], ["updated_at", "2020-04-23 17:13:13.237294"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est officiis consectetur labore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.240670"], ["updated_at", "2020-04-23 17:13:13.240670"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Magnam saepe sequi id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.244125"], ["updated_at", "2020-04-23 17:13:13.244125"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Enim incidunt amet corporis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.246276"], ["updated_at", "2020-04-23 17:13:13.246276"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum culpa unde qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.248113"], ["updated_at", "2020-04-23 17:13:13.248113"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsam sequi odit et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.249919"], ["updated_at", "2020-04-23 17:13:13.249919"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur rerum rem eligendi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.251650"], ["updated_at", "2020-04-23 17:13:13.251650"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:13:13 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.2ms | Allocations: 4185)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Consequatur ea quasi non."], ["created_at", "2020-04-23 17:13:13.281422"], ["updated_at", "2020-04-23 17:13:13.281422"], ["created_by", "8656755909"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui sed et dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.286775"], ["updated_at", "2020-04-23 17:13:13.286775"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique tenetur quos quibusdam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.288901"], ["updated_at", "2020-04-23 17:13:13.288901"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Earum maiores omnis magnam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.290688"], ["updated_at", "2020-04-23 17:13:13.290688"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut commodi sit consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.292391"], ["updated_at", "2020-04-23 17:13:13.292391"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non voluptatem reprehenderit praesentium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.294122"], ["updated_at", "2020-04-23 17:13:13.294122"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis aliquam et at?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.295783"], ["updated_at", "2020-04-23 17:13:13.295783"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia a hic quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.297373"], ["updated_at", "2020-04-23 17:13:13.297373"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed cumque ducimus dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.299886"], ["updated_at", "2020-04-23 17:13:13.299886"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facilis voluptatem recusandae inventore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.301769"], ["updated_at", "2020-04-23 17:13:13.301769"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum reprehenderit qui nisi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.304640"], ["updated_at", "2020-04-23 17:13:13.304640"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis esse qui quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.307185"], ["updated_at", "2020-04-23 17:13:13.307185"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Temporibus cumque fugit consectetur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.311131"], ["updated_at", "2020-04-23 17:13:13.311131"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eaque doloremque dolores libero?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.313235"], ["updated_at", "2020-04-23 17:13:13.313235"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsa voluptas quo modi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.314990"], ["updated_at", "2020-04-23 17:13:13.314990"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloremque eum reiciendis ipsum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.316838"], ["updated_at", "2020-04-23 17:13:13.316838"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis corrupti exercitationem vel?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.319156"], ["updated_at", "2020-04-23 17:13:13.319156"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est incidunt voluptatem magnam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.322749"], ["updated_at", "2020-04-23 17:13:13.322749"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Atque quia eos excepturi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.325987"], ["updated_at", "2020-04-23 17:13:13.325987"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum quasi deleniti consequuntur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.328478"], ["updated_at", "2020-04-23 17:13:13.328478"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorum ipsum voluptatem dignissimos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.330285"], ["updated_at", "2020-04-23 17:13:13.330285"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 14:13:13 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (26.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Distinctio quia recusandae eum."], ["created_at", "2020-04-23 17:13:13.367415"], ["updated_at", "2020-04-23 17:13:13.367415"], ["created_by", "5698287124"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cum consequatur sequi impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.372335"], ["updated_at", "2020-04-23 17:13:13.372335"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id aperiam aspernatur ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.374387"], ["updated_at", "2020-04-23 17:13:13.374387"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Harum et dignissimos aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.376381"], ["updated_at", "2020-04-23 17:13:13.376381"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit qui id fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.378095"], ["updated_at", "2020-04-23 17:13:13.378095"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deserunt sit nam temporibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.380990"], ["updated_at", "2020-04-23 17:13:13.380990"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ex dolores quis harum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.383321"], ["updated_at", "2020-04-23 17:13:13.383321"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Exercitationem asperiores quia et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.385343"], ["updated_at", "2020-04-23 17:13:13.385343"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit praesentium dolor a?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.387399"], ["updated_at", "2020-04-23 17:13:13.387399"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eaque est eius laudantium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.391023"], ["updated_at", "2020-04-23 17:13:13.391023"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facere est impedit perspiciatis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.394093"], ["updated_at", "2020-04-23 17:13:13.394093"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Inventore earum enim molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.395917"], ["updated_at", "2020-04-23 17:13:13.395917"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id in velit itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.397473"], ["updated_at", "2020-04-23 17:13:13.397473"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nesciunt debitis et maiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.399752"], ["updated_at", "2020-04-23 17:13:13.399752"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sapiente quibusdam veritatis deserunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.402916"], ["updated_at", "2020-04-23 17:13:13.402916"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id aut incidunt a?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.405711"], ["updated_at", "2020-04-23 17:13:13.405711"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui quod corporis vero?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.407560"], ["updated_at", "2020-04-23 17:13:13.407560"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Assumenda saepe incidunt blanditiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.409502"], ["updated_at", "2020-04-23 17:13:13.409502"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos voluptas harum non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.411271"], ["updated_at", "2020-04-23 17:13:13.411271"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Placeat commodi tempore non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.413106"], ["updated_at", "2020-04-23 17:13:13.413106"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime dolorem iste praesentium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.414795"], ["updated_at", "2020-04-23 17:13:13.414795"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 14:13:13 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 211)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Quasi sed quo illum."], ["created_at", "2020-04-23 17:13:13.434150"], ["updated_at", "2020-04-23 17:13:13.434150"], ["created_by", "3408187640"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est est facere minus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.438330"], ["updated_at", "2020-04-23 17:13:13.438330"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui tempora deleniti placeat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.440749"], ["updated_at", "2020-04-23 17:13:13.440749"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut mollitia et illo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.442794"], ["updated_at", "2020-04-23 17:13:13.442794"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea deserunt id officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.445131"], ["updated_at", "2020-04-23 17:13:13.445131"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cum iure et sapiente?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.447237"], ["updated_at", "2020-04-23 17:13:13.447237"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Saepe odit laborum labore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.450025"], ["updated_at", "2020-04-23 17:13:13.450025"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur consectetur eos explicabo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.452933"], ["updated_at", "2020-04-23 17:13:13.452933"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Soluta veniam quibusdam odit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.455202"], ["updated_at", "2020-04-23 17:13:13.455202"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veniam mollitia velit harum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.457649"], ["updated_at", "2020-04-23 17:13:13.457649"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Architecto adipisci voluptas fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.462165"], ["updated_at", "2020-04-23 17:13:13.462165"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus voluptate voluptatem tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.465035"], ["updated_at", "2020-04-23 17:13:13.465035"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Commodi et consequatur praesentium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.467592"], ["updated_at", "2020-04-23 17:13:13.467592"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis quidem qui delectus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.471047"], ["updated_at", "2020-04-23 17:13:13.471047"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam unde voluptatibus doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.474832"], ["updated_at", "2020-04-23 17:13:13.474832"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem repellendus iusto blanditiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.477467"], ["updated_at", "2020-04-23 17:13:13.477467"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eaque vitae non nemo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.479551"], ["updated_at", "2020-04-23 17:13:13.479551"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi at enim nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.483309"], ["updated_at", "2020-04-23 17:13:13.483309"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed et sit voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.486244"], ["updated_at", "2020-04-23 17:13:13.486244"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Possimus dolorem dolore illum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.488310"], ["updated_at", "2020-04-23 17:13:13.488310"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tenetur minus et sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.490111"], ["updated_at", "2020-04-23 17:13:13.490111"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:13:13 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 719)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Et quo tempora numquam."], ["created_at", "2020-04-23 17:13:13.508903"], ["updated_at", "2020-04-23 17:13:13.508903"], ["created_by", "3822200356"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veniam iure voluptatem et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.513302"], ["updated_at", "2020-04-23 17:13:13.513302"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id accusantium similique quisquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.515347"], ["updated_at", "2020-04-23 17:13:13.515347"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsum voluptatem quia qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.516958"], ["updated_at", "2020-04-23 17:13:13.516958"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis eaque est dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.518665"], ["updated_at", "2020-04-23 17:13:13.518665"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Earum in maiores quis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.521220"], ["updated_at", "2020-04-23 17:13:13.521220"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut nam quia corrupti?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.523170"], ["updated_at", "2020-04-23 17:13:13.523170"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Adipisci aspernatur hic aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.524927"], ["updated_at", "2020-04-23 17:13:13.524927"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Assumenda ratione veniam atque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.526804"], ["updated_at", "2020-04-23 17:13:13.526804"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vitae cum beatae itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.529169"], ["updated_at", "2020-04-23 17:13:13.529169"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugit quia eos voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.533057"], ["updated_at", "2020-04-23 17:13:13.533057"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Excepturi voluptatem harum repellendus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.534894"], ["updated_at", "2020-04-23 17:13:13.534894"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempora minima harum doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.536642"], ["updated_at", "2020-04-23 17:13:13.536642"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aperiam nostrum suscipit sapiente?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.538408"], ["updated_at", "2020-04-23 17:13:13.538408"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Neque sunt fugiat reiciendis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.540612"], ["updated_at", "2020-04-23 17:13:13.540612"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Illo alias harum sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.544207"], ["updated_at", "2020-04-23 17:13:13.544207"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error non laudantium impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.546910"], ["updated_at", "2020-04-23 17:13:13.546910"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Esse ut sapiente et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.548876"], ["updated_at", "2020-04-23 17:13:13.548876"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aspernatur et sed atque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.550664"], ["updated_at", "2020-04-23 17:13:13.550664"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Impedit tempore autem ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.552406"], ["updated_at", "2020-04-23 17:13:13.552406"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsam cum tempore et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.554201"], ["updated_at", "2020-04-23 17:13:13.554201"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:13:13 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 692)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Veniam repellat corporis mollitia."], ["created_at", "2020-04-23 17:13:13.571950"], ["updated_at", "2020-04-23 17:13:13.571950"], ["created_by", "6192852046"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nobis eum fugiat non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.576022"], ["updated_at", "2020-04-23 17:13:13.576022"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur tempora in consectetur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.578460"], ["updated_at", "2020-04-23 17:13:13.578460"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id consequatur praesentium animi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.580831"], ["updated_at", "2020-04-23 17:13:13.580831"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Delectus dolorem voluptate id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.583343"], ["updated_at", "2020-04-23 17:13:13.583343"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Unde optio molestiae delectus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.585242"], ["updated_at", "2020-04-23 17:13:13.585242"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui doloribus odit illum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.587153"], ["updated_at", "2020-04-23 17:13:13.587153"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem voluptatem sit voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.590022"], ["updated_at", "2020-04-23 17:13:13.590022"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsum nostrum laboriosam quibusdam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.592970"], ["updated_at", "2020-04-23 17:13:13.592970"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsa quis impedit voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.594772"], ["updated_at", "2020-04-23 17:13:13.594772"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ab et exercitationem cum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.597092"], ["updated_at", "2020-04-23 17:13:13.597092"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis quidem sed aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.598988"], ["updated_at", "2020-04-23 17:13:13.598988"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae aliquid voluptatem voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.601714"], ["updated_at", "2020-04-23 17:13:13.601714"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut mollitia quas facere?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.604952"], ["updated_at", "2020-04-23 17:13:13.604952"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ex et officiis omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.607201"], ["updated_at", "2020-04-23 17:13:13.607201"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus quis ab et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.609460"], ["updated_at", "2020-04-23 17:13:13.609460"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ad quas et minima?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.612016"], ["updated_at", "2020-04-23 17:13:13.612016"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In consequuntur ut est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.613864"], ["updated_at", "2020-04-23 17:13:13.613864"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quasi error itaque aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.615734"], ["updated_at", "2020-04-23 17:13:13.615734"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis aut delectus officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.617689"], ["updated_at", "2020-04-23 17:13:13.617689"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cumque ratione enim sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.619544"], ["updated_at", "2020-04-23 17:13:13.619544"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:13:13 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 584)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Blanditiis aut fugit a."], ["created_at", "2020-04-23 17:13:13.636225"], ["updated_at", "2020-04-23 17:13:13.636225"], ["created_by", "3446256049"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facere distinctio accusamus nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.641202"], ["updated_at", "2020-04-23 17:13:13.641202"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veniam quaerat blanditiis sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.651795"], ["updated_at", "2020-04-23 17:13:13.651795"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Modi provident ut alias?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.654437"], ["updated_at", "2020-04-23 17:13:13.654437"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem sed voluptatum autem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.656199"], ["updated_at", "2020-04-23 17:13:13.656199"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem saepe explicabo quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.657842"], ["updated_at", "2020-04-23 17:13:13.657842"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Numquam qui tempora ullam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.659495"], ["updated_at", "2020-04-23 17:13:13.659495"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Impedit labore pariatur aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.662331"], ["updated_at", "2020-04-23 17:13:13.662331"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestias dolorem repellendus doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.664842"], ["updated_at", "2020-04-23 17:13:13.664842"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.9ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis tempora quae animi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.666875"], ["updated_at", "2020-04-23 17:13:13.666875"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et nobis voluptas doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.670435"], ["updated_at", "2020-04-23 17:13:13.670435"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Beatae mollitia aut autem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.673400"], ["updated_at", "2020-04-23 17:13:13.673400"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsa porro reprehenderit voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.675356"], ["updated_at", "2020-04-23 17:13:13.675356"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odit exercitationem eius et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.677451"], ["updated_at", "2020-04-23 17:13:13.677451"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime expedita fugiat ducimus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.679500"], ["updated_at", "2020-04-23 17:13:13.679500"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati pariatur sint culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.682202"], ["updated_at", "2020-04-23 17:13:13.682202"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minus quam odit debitis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.685608"], ["updated_at", "2020-04-23 17:13:13.685608"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos ut facere aliquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.688180"], ["updated_at", "2020-04-23 17:13:13.688180"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti deserunt vel debitis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.690292"], ["updated_at", "2020-04-23 17:13:13.690292"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non tempora rerum facere?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.692097"], ["updated_at", "2020-04-23 17:13:13.692097"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est occaecati illum id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.693691"], ["updated_at", "2020-04-23 17:13:13.693691"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:13:13 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "doloribus"], ["description", "Quia magni odio ducimus."], ["created_at", "2020-04-23 17:13:13.748790"], ["updated_at", "2020-04-23 17:13:13.748790"], ["created_by", "9620460194"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Temporibus sapiente quia sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.755022"], ["updated_at", "2020-04-23 17:13:13.755022"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia quo voluptatibus voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.757047"], ["updated_at", "2020-04-23 17:13:13.757047"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed inventore nisi in?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.758772"], ["updated_at", "2020-04-23 17:13:13.758772"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id provident quod veniam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.760367"], ["updated_at", "2020-04-23 17:13:13.760367"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Totam praesentium aut deserunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.763302"], ["updated_at", "2020-04-23 17:13:13.763302"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut et fugit aperiam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.765458"], ["updated_at", "2020-04-23 17:13:13.765458"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui cum ex modi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.767280"], ["updated_at", "2020-04-23 17:13:13.767280"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maxime voluptatum qui sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.769523"], ["updated_at", "2020-04-23 17:13:13.769523"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.9ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia quo at quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.772169"], ["updated_at", "2020-04-23 17:13:13.772169"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempora ea illo odit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.775575"], ["updated_at", "2020-04-23 17:13:13.775575"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id et voluptas est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.777902"], ["updated_at", "2020-04-23 17:13:13.777902"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur et ab iure?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.780070"], ["updated_at", "2020-04-23 17:13:13.780070"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Optio id iusto aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.783219"], ["updated_at", "2020-04-23 17:13:13.783219"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est vitae ut aperiam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.787116"], ["updated_at", "2020-04-23 17:13:13.787116"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Excepturi dolore qui consequuntur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.789526"], ["updated_at", "2020-04-23 17:13:13.789526"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia sequi quam sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.791696"], ["updated_at", "2020-04-23 17:13:13.791696"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit ab quos sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.793502"], ["updated_at", "2020-04-23 17:13:13.793502"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est qui ratione quisquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.795177"], ["updated_at", "2020-04-23 17:13:13.795177"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cumque aliquam sed explicabo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.796831"], ["updated_at", "2020-04-23 17:13:13.796831"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui consequuntur vel dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.798666"], ["updated_at", "2020-04-23 17:13:13.798666"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:13:13 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"title"=>"Visit Narnia", "description"=>"false", "meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Visit Narnia"], ["description", "false"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.815967"], ["updated_at", "2020-04-23 17:13:13.815967"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 4ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1143)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Vel error autem praesentium."], ["created_at", "2020-04-23 17:13:13.834153"], ["updated_at", "2020-04-23 17:13:13.834153"], ["created_by", "2048161568"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facilis dolor non rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.838526"], ["updated_at", "2020-04-23 17:13:13.838526"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Placeat qui sed eaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.840540"], ["updated_at", "2020-04-23 17:13:13.840540"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "A explicabo natus iste?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.843116"], ["updated_at", "2020-04-23 17:13:13.843116"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut consequatur saepe est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.845570"], ["updated_at", "2020-04-23 17:13:13.845570"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia fugit excepturi cupiditate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.847488"], ["updated_at", "2020-04-23 17:13:13.847488"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dignissimos quo provident et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.849518"], ["updated_at", "2020-04-23 17:13:13.849518"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut aut nesciunt at?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.851766"], ["updated_at", "2020-04-23 17:13:13.851766"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Impedit qui eum qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.854695"], ["updated_at", "2020-04-23 17:13:13.854695"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor sint incidunt enim?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.856846"], ["updated_at", "2020-04-23 17:13:13.856846"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt exercitationem aliquid ea?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.859412"], ["updated_at", "2020-04-23 17:13:13.859412"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus sunt a modi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.861287"], ["updated_at", "2020-04-23 17:13:13.861287"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iure non sit dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.864474"], ["updated_at", "2020-04-23 17:13:13.864474"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non ea similique dolorum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.867422"], ["updated_at", "2020-04-23 17:13:13.867422"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit quibusdam non iste?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.869482"], ["updated_at", "2020-04-23 17:13:13.869482"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti aliquid molestiae velit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.871193"], ["updated_at", "2020-04-23 17:13:13.871193"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempore qui sapiente sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.872817"], ["updated_at", "2020-04-23 17:13:13.872817"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur eum quisquam velit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.874438"], ["updated_at", "2020-04-23 17:13:13.874438"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sed harum quis nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.876579"], ["updated_at", "2020-04-23 17:13:13.876579"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Saepe nihil eaque laborum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.878642"], ["updated_at", "2020-04-23 17:13:13.878642"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos dolore quam aliquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.880498"], ["updated_at", "2020-04-23 17:13:13.880498"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:13:13 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1147)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Laborum ducimus quidem inventore."], ["created_at", "2020-04-23 17:13:13.897908"], ["updated_at", "2020-04-23 17:13:13.897908"], ["created_by", "9221952859"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Modi incidunt veniam dolorum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.902223"], ["updated_at", "2020-04-23 17:13:13.902223"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel ullam in iste?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.904514"], ["updated_at", "2020-04-23 17:13:13.904514"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Suscipit consectetur molestiae impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.906223"], ["updated_at", "2020-04-23 17:13:13.906223"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In quas rerum corrupti?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.908072"], ["updated_at", "2020-04-23 17:13:13.908072"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas sit ex enim?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.910781"], ["updated_at", "2020-04-23 17:13:13.910781"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas assumenda est aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.913603"], ["updated_at", "2020-04-23 17:13:13.913603"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cum voluptatem velit deleniti?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.916193"], ["updated_at", "2020-04-23 17:13:13.916193"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eligendi provident sed aliquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.918074"], ["updated_at", "2020-04-23 17:13:13.918074"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut beatae quis odit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.919827"], ["updated_at", "2020-04-23 17:13:13.919827"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fuga quod quibusdam voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.923176"], ["updated_at", "2020-04-23 17:13:13.923176"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae et et dolorum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.927144"], ["updated_at", "2020-04-23 17:13:13.927144"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt explicabo tenetur autem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.929930"], ["updated_at", "2020-04-23 17:13:13.929930"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis vel sunt impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.931859"], ["updated_at", "2020-04-23 17:13:13.931859"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officiis non incidunt omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.934054"], ["updated_at", "2020-04-23 17:13:13.934054"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Numquam tenetur occaecati doloribus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.937078"], ["updated_at", "2020-04-23 17:13:13.937078"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Atque similique veritatis expedita?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.959092"], ["updated_at", "2020-04-23 17:13:13.959092"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut tempore ut alias?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.961161"], ["updated_at", "2020-04-23 17:13:13.961161"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Optio doloremque debitis ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.963995"], ["updated_at", "2020-04-23 17:13:13.963995"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non omnis ab tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.966309"], ["updated_at", "2020-04-23 17:13:13.966309"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quidem fuga consequatur aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.968081"], ["updated_at", "2020-04-23 17:13:13.968081"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:13:13 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1126)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "optio"], ["description", "Laudantium odio repellat quas."], ["created_at", "2020-04-23 17:13:13.987585"], ["updated_at", "2020-04-23 17:13:13.987585"], ["created_by", "3621791917"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est quo possimus sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.992164"], ["updated_at", "2020-04-23 17:13:13.992164"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae iure voluptas incidunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.994100"], ["updated_at", "2020-04-23 17:13:13.994100"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas quae quidem quibusdam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.995945"], ["updated_at", "2020-04-23 17:13:13.995945"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis sit praesentium quidem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.997678"], ["updated_at", "2020-04-23 17:13:13.997678"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facere magni nisi dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:13.999502"], ["updated_at", "2020-04-23 17:13:13.999502"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facilis quia ea officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.001300"], ["updated_at", "2020-04-23 17:13:14.001300"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Velit ipsa et quo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.003566"], ["updated_at", "2020-04-23 17:13:14.003566"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut laborum sit iste?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.005476"], ["updated_at", "2020-04-23 17:13:14.005476"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum et iusto dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.007256"], ["updated_at", "2020-04-23 17:13:14.007256"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quod magni ut numquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.010947"], ["updated_at", "2020-04-23 17:13:14.010947"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corporis minus neque in?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.014317"], ["updated_at", "2020-04-23 17:13:14.014317"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est blanditiis suscipit excepturi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.016676"], ["updated_at", "2020-04-23 17:13:14.016676"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est sequi sed eum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.018430"], ["updated_at", "2020-04-23 17:13:14.018430"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Natus consectetur atque nesciunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.020154"], ["updated_at", "2020-04-23 17:13:14.020154"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et odio est voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.021734"], ["updated_at", "2020-04-23 17:13:14.021734"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut velit nobis quaerat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.024487"], ["updated_at", "2020-04-23 17:13:14.024487"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Praesentium aliquid voluptates nam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.028025"], ["updated_at", "2020-04-23 17:13:14.028025"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eius aliquam sapiente vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.030783"], ["updated_at", "2020-04-23 17:13:14.030783"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloribus dolorum consectetur in?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.032555"], ["updated_at", "2020-04-23 17:13:14.032555"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nemo nesciunt corrupti cum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.034222"], ["updated_at", "2020-04-23 17:13:14.034222"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:13:14 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Update (0.1ms)[0m [1m[33mUPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ?[0m [["title", "Mozart"], ["updated_at", "2020-04-23 17:13:14.037786"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1092)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Rerum nihil reiciendis sunt."], ["created_at", "2020-04-23 17:13:14.051757"], ["updated_at", "2020-04-23 17:13:14.051757"], ["created_by", "9177176704"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas ex quia officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.055637"], ["updated_at", "2020-04-23 17:13:14.055637"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum dolorem adipisci voluptatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.057890"], ["updated_at", "2020-04-23 17:13:14.057890"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minima sed dolores necessitatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.059952"], ["updated_at", "2020-04-23 17:13:14.059952"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Necessitatibus autem est dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.061556"], ["updated_at", "2020-04-23 17:13:14.061556"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Incidunt qui similique eos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.063719"], ["updated_at", "2020-04-23 17:13:14.063719"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempora molestiae a aspernatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.065999"], ["updated_at", "2020-04-23 17:13:14.065999"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel dignissimos explicabo totam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.068165"], ["updated_at", "2020-04-23 17:13:14.068165"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ab qui ut impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.070431"], ["updated_at", "2020-04-23 17:13:14.070431"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Numquam quibusdam itaque rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.072971"], ["updated_at", "2020-04-23 17:13:14.072971"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit placeat nemo quis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.076581"], ["updated_at", "2020-04-23 17:13:14.076581"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis delectus eum accusantium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.078876"], ["updated_at", "2020-04-23 17:13:14.078876"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quod dolorum deserunt accusantium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.080625"], ["updated_at", "2020-04-23 17:13:14.080625"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo est consequatur ullam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.082248"], ["updated_at", "2020-04-23 17:13:14.082248"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et repellat illum unde?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.085275"], ["updated_at", "2020-04-23 17:13:14.085275"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui qui perferendis expedita?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.088317"], ["updated_at", "2020-04-23 17:13:14.088317"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus alias et id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.091033"], ["updated_at", "2020-04-23 17:13:14.091033"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia nostrum neque distinctio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.092756"], ["updated_at", "2020-04-23 17:13:14.092756"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia id quaerat inventore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.094426"], ["updated_at", "2020-04-23 17:13:14.094426"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Fugit velit ducimus perspiciatis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.095957"], ["updated_at", "2020-04-23 17:13:14.095957"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Enim atque et repellendus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.097487"], ["updated_at", "2020-04-23 17:13:14.097487"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:13:14 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Update (0.1ms)[0m [1m[33mUPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ?[0m [["title", "Mozart"], ["updated_at", "2020-04-23 17:13:14.100925"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 1012)
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Maxime illum optio molestiae."], ["created_at", "2020-04-23 17:13:14.114580"], ["updated_at", "2020-04-23 17:13:14.114580"], ["created_by", "5328863831"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor unde quibusdam tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.118761"], ["updated_at", "2020-04-23 17:13:14.118761"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui ad delectus consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.121105"], ["updated_at", "2020-04-23 17:13:14.121105"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dignissimos consequuntur aut eos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.123045"], ["updated_at", "2020-04-23 17:13:14.123045"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut ab aut sequi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.125693"], ["updated_at", "2020-04-23 17:13:14.125693"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est sed beatae in?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.127756"], ["updated_at", "2020-04-23 17:13:14.127756"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Culpa dolores qui sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.129904"], ["updated_at", "2020-04-23 17:13:14.129904"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint non architecto qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.132470"], ["updated_at", "2020-04-23 17:13:14.132470"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis et blanditiis sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.135598"], ["updated_at", "2020-04-23 17:13:14.135598"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aspernatur sed modi voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.137461"], ["updated_at", "2020-04-23 17:13:14.137461"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut et praesentium fugit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.139925"], ["updated_at", "2020-04-23 17:13:14.139925"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea quibusdam doloribus quo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.141585"], ["updated_at", "2020-04-23 17:13:14.141585"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Temporibus soluta voluptate iste?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.144382"], ["updated_at", "2020-04-23 17:13:14.144382"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas delectus nobis quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.148069"], ["updated_at", "2020-04-23 17:13:14.148069"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis doloribus nobis consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.150786"], ["updated_at", "2020-04-23 17:13:14.150786"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui consequatur exercitationem rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.152508"], ["updated_at", "2020-04-23 17:13:14.152508"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Natus repudiandae culpa libero?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.154007"], ["updated_at", "2020-04-23 17:13:14.154007"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut quia et magni?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.155640"], ["updated_at", "2020-04-23 17:13:14.155640"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut ab in est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.157183"], ["updated_at", "2020-04-23 17:13:14.157183"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores voluptates facilis provident?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.158723"], ["updated_at", "2020-04-23 17:13:14.158723"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Commodi quam aperiam voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.160508"], ["updated_at", "2020-04-23 17:13:14.160508"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:13:14 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 568)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Culpa officiis quidem aut."], ["created_at", "2020-04-23 17:13:14.177102"], ["updated_at", "2020-04-23 17:13:14.177102"], ["created_by", "7222188928"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut et mollitia et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.181171"], ["updated_at", "2020-04-23 17:13:14.181171"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusamus tempora possimus maxime?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.183144"], ["updated_at", "2020-04-23 17:13:14.183144"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos necessitatibus rerum laboriosam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.185531"], ["updated_at", "2020-04-23 17:13:14.185531"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor quas natus in?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.187343"], ["updated_at", "2020-04-23 17:13:14.187343"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quidem veniam labore ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.189666"], ["updated_at", "2020-04-23 17:13:14.189666"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit animi nesciunt voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.191664"], ["updated_at", "2020-04-23 17:13:14.191664"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut commodi porro veniam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.194081"], ["updated_at", "2020-04-23 17:13:14.194081"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto aliquid fugiat facilis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.197055"], ["updated_at", "2020-04-23 17:13:14.197055"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Praesentium totam consequatur iste?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.199057"], ["updated_at", "2020-04-23 17:13:14.199057"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et vero possimus consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.201379"], ["updated_at", "2020-04-23 17:13:14.201379"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit corrupti qui ea?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.203108"], ["updated_at", "2020-04-23 17:13:14.203108"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quasi id et sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.206270"], ["updated_at", "2020-04-23 17:13:14.206270"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem iure eos iusto?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.209561"], ["updated_at", "2020-04-23 17:13:14.209561"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorem rem voluptas aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.211705"], ["updated_at", "2020-04-23 17:13:14.211705"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Facilis autem odio ab?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.213340"], ["updated_at", "2020-04-23 17:13:14.213340"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ullam numquam omnis totam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.214892"], ["updated_at", "2020-04-23 17:13:14.214892"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut illo sint soluta?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.216495"], ["updated_at", "2020-04-23 17:13:14.216495"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum quos porro magni?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.218059"], ["updated_at", "2020-04-23 17:13:14.218059"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas aut corrupti sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.219771"], ["updated_at", "2020-04-23 17:13:14.219771"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Saepe cum error eligendi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.221388"], ["updated_at", "2020-04-23 17:13:14.221388"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:13:14 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 568)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Iusto porro in rem."], ["created_at", "2020-04-23 17:13:14.238647"], ["updated_at", "2020-04-23 17:13:14.238647"], ["created_by", "8691001681"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatibus eligendi sit omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.242543"], ["updated_at", "2020-04-23 17:13:14.242543"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officia omnis sed autem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.245839"], ["updated_at", "2020-04-23 17:13:14.245839"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nesciunt consequatur maiores ea?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.247845"], ["updated_at", "2020-04-23 17:13:14.247845"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Amet neque suscipit rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.249943"], ["updated_at", "2020-04-23 17:13:14.249943"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odio dignissimos aut nulla?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.252087"], ["updated_at", "2020-04-23 17:13:14.252087"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In omnis nisi est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.255177"], ["updated_at", "2020-04-23 17:13:14.255177"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusantium mollitia porro omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.257836"], ["updated_at", "2020-04-23 17:13:14.257836"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti et ut dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.259727"], ["updated_at", "2020-04-23 17:13:14.259727"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et voluptate sed eveniet?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.261348"], ["updated_at", "2020-04-23 17:13:14.261348"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati facilis possimus repudiandae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.263883"], ["updated_at", "2020-04-23 17:13:14.263883"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et non autem consequuntur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.266483"], ["updated_at", "2020-04-23 17:13:14.266483"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui doloribus quisquam incidunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.268637"], ["updated_at", "2020-04-23 17:13:14.268637"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloribus fugit aliquam perferendis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.270875"], ["updated_at", "2020-04-23 17:13:14.270875"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit cupiditate officia perferendis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.273163"], ["updated_at", "2020-04-23 17:13:14.273163"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deserunt hic aut esse?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.276303"], ["updated_at", "2020-04-23 17:13:14.276303"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas sed perspiciatis corporis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.278832"], ["updated_at", "2020-04-23 17:13:14.278832"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut tenetur dolores maxime?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.280492"], ["updated_at", "2020-04-23 17:13:14.280492"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates nam sunt necessitatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.282236"], ["updated_at", "2020-04-23 17:13:14.282236"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et iure enim labore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.284798"], ["updated_at", "2020-04-23 17:13:14.284798"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "A quo aut et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:13:14.289547"], ["updated_at", "2020-04-23 17:13:14.289547"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:13:14 -0300
+Processing by MeetingsController#destroy as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Destroy (0.2ms)[0m [1m[31mDELETE FROM "meetings" WHERE "meetings"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.5ms | Allocations: 711)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Enim dolor eligendi et."], ["created_at", "2020-04-23 17:13:14.310667"], ["updated_at", "2020-04-23 17:13:14.310667"], ["created_by", "6752030002"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Placeat dolores est ipsum."], ["created_at", "2020-04-23 17:13:14.316864"], ["updated_at", "2020-04-23 17:13:14.316864"], ["created_by", "6494895954"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Magnam voluptas eum fuga."], ["created_at", "2020-04-23 17:13:14.321192"], ["updated_at", "2020-04-23 17:13:14.321192"], ["created_by", "4219577117"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Quod eaque occaecati omnis."], ["created_at", "2020-04-23 17:13:14.334055"], ["updated_at", "2020-04-23 17:13:14.334055"], ["created_by", "9237342282"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Cum omnis nobis perferendis."], ["created_at", "2020-04-23 17:13:14.339960"], ["updated_at", "2020-04-23 17:13:14.339960"], ["created_by", "3876999380"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Laudantium perspiciatis sapiente quia."], ["created_at", "2020-04-23 17:13:14.344940"], ["updated_at", "2020-04-23 17:13:14.344940"], ["created_by", "6428399563"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Ea voluptates quas sit."], ["created_at", "2020-04-23 17:13:14.356099"], ["updated_at", "2020-04-23 17:13:14.356099"], ["created_by", "4043333332"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Ea omnis sint voluptatem."], ["created_at", "2020-04-23 17:13:14.362272"], ["updated_at", "2020-04-23 17:13:14.362272"], ["created_by", "4873249079"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Labore sit velit voluptatem."], ["created_at", "2020-04-23 17:13:14.379001"], ["updated_at", "2020-04-23 17:13:14.379001"], ["created_by", "3571519011"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Illum eaque facilis harum."], ["created_at", "2020-04-23 17:13:14.384225"], ["updated_at", "2020-04-23 17:13:14.384225"], ["created_by", "8387744070"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:13:14 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.2ms | Allocations: 2378)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Et est temporibus quia."], ["created_at", "2020-04-23 17:13:14.420743"], ["updated_at", "2020-04-23 17:13:14.420743"], ["created_by", "4828589228"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Ipsum nesciunt modi fuga."], ["created_at", "2020-04-23 17:13:14.437947"], ["updated_at", "2020-04-23 17:13:14.437947"], ["created_by", "9671596608"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Neque excepturi exercitationem qui."], ["created_at", "2020-04-23 17:13:14.443372"], ["updated_at", "2020-04-23 17:13:14.443372"], ["created_by", "6491985695"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "nemo"], ["description", "Voluptate dolor occaecati explicabo."], ["created_at", "2020-04-23 17:13:14.459481"], ["updated_at", "2020-04-23 17:13:14.459481"], ["created_by", "3329641493"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Aut dolores blanditiis laudantium."], ["created_at", "2020-04-23 17:13:14.464130"], ["updated_at", "2020-04-23 17:13:14.464130"], ["created_by", "6766895577"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Dolor accusantium expedita commodi."], ["created_at", "2020-04-23 17:13:14.477956"], ["updated_at", "2020-04-23 17:13:14.477956"], ["created_by", "9983915670"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Enim ut soluta et."], ["created_at", "2020-04-23 17:13:14.483044"], ["updated_at", "2020-04-23 17:13:14.483044"], ["created_by", "1935698830"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Aut repellat doloremque illum."], ["created_at", "2020-04-23 17:13:14.496425"], ["updated_at", "2020-04-23 17:13:14.496425"], ["created_by", "4601901732"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "In ipsam molestiae et."], ["created_at", "2020-04-23 17:13:14.500860"], ["updated_at", "2020-04-23 17:13:14.500860"], ["created_by", "3718798044"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Ipsam est vel fuga."], ["created_at", "2020-04-23 17:13:14.519376"], ["updated_at", "2020-04-23 17:13:14.519376"], ["created_by", "9859105967"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:13:14 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms | Allocations: 2315)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Sint quo fugiat facilis."], ["created_at", "2020-04-23 17:13:14.541229"], ["updated_at", "2020-04-23 17:13:14.541229"], ["created_by", "4879181119"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Non quo impedit nesciunt."], ["created_at", "2020-04-23 17:13:14.558109"], ["updated_at", "2020-04-23 17:13:14.558109"], ["created_by", "2595368130"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Dolores qui eius aut."], ["created_at", "2020-04-23 17:13:14.562813"], ["updated_at", "2020-04-23 17:13:14.562813"], ["created_by", "3787475104"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Corrupti ut veniam nisi."], ["created_at", "2020-04-23 17:13:14.577007"], ["updated_at", "2020-04-23 17:13:14.577007"], ["created_by", "8592720324"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Mollitia quia ipsum maiores."], ["created_at", "2020-04-23 17:13:14.582319"], ["updated_at", "2020-04-23 17:13:14.582319"], ["created_by", "3877215527"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "Saepe itaque libero doloremque."], ["created_at", "2020-04-23 17:13:14.586732"], ["updated_at", "2020-04-23 17:13:14.586732"], ["created_by", "3649459424"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Voluptatem aperiam et ut."], ["created_at", "2020-04-23 17:13:14.597967"], ["updated_at", "2020-04-23 17:13:14.597967"], ["created_by", "5379643564"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Enim alias est asperiores."], ["created_at", "2020-04-23 17:13:14.602908"], ["updated_at", "2020-04-23 17:13:14.602908"], ["created_by", "7210135269"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Qui voluptatem similique quidem."], ["created_at", "2020-04-23 17:13:14.617946"], ["updated_at", "2020-04-23 17:13:14.617946"], ["created_by", "5384501728"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Qui eius exercitationem quo."], ["created_at", "2020-04-23 17:13:14.623610"], ["updated_at", "2020-04-23 17:13:14.623610"], ["created_by", "6756923511"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 14:13:14 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.1ms | Allocations: 408)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Est optio maxime aut."], ["created_at", "2020-04-23 17:13:14.660070"], ["updated_at", "2020-04-23 17:13:14.660070"], ["created_by", "3379848828"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Tenetur soluta ducimus nisi."], ["created_at", "2020-04-23 17:13:14.675428"], ["updated_at", "2020-04-23 17:13:14.675428"], ["created_by", "1625151887"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Sit voluptatum consequatur provident."], ["created_at", "2020-04-23 17:13:14.681556"], ["updated_at", "2020-04-23 17:13:14.681556"], ["created_by", "9283906665"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Voluptas deserunt architecto ad."], ["created_at", "2020-04-23 17:13:14.685353"], ["updated_at", "2020-04-23 17:13:14.685353"], ["created_by", "1677254593"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "cum"], ["description", "Corrupti est impedit in."], ["created_at", "2020-04-23 17:13:14.698087"], ["updated_at", "2020-04-23 17:13:14.698087"], ["created_by", "6689924669"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Sed ducimus qui laudantium."], ["created_at", "2020-04-23 17:13:14.703510"], ["updated_at", "2020-04-23 17:13:14.703510"], ["created_by", "9275245992"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "doloribus"], ["description", "Recusandae et eius inventore."], ["created_at", "2020-04-23 17:13:14.717655"], ["updated_at", "2020-04-23 17:13:14.717655"], ["created_by", "1059343027"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Consectetur similique repudiandae ea."], ["created_at", "2020-04-23 17:13:14.723102"], ["updated_at", "2020-04-23 17:13:14.723102"], ["created_by", "2027022538"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Recusandae voluptas ipsum dolore."], ["created_at", "2020-04-23 17:13:14.735731"], ["updated_at", "2020-04-23 17:13:14.735731"], ["created_by", "2897170380"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "At et voluptatem nam."], ["created_at", "2020-04-23 17:13:14.743171"], ["updated_at", "2020-04-23 17:13:14.743171"], ["created_by", "9413781898"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 14:13:14 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 407)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (83.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Tenetur quia nostrum optio."], ["created_at", "2020-04-23 17:13:14.762253"], ["updated_at", "2020-04-23 17:13:14.762253"], ["created_by", "1570625101"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Cupiditate quas excepturi quia."], ["created_at", "2020-04-23 17:13:14.861037"], ["updated_at", "2020-04-23 17:13:14.861037"], ["created_by", "6261260657"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Recusandae aspernatur dolores corporis."], ["created_at", "2020-04-23 17:13:14.885973"], ["updated_at", "2020-04-23 17:13:14.885973"], ["created_by", "6152282216"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Rerum temporibus dolor cumque."], ["created_at", "2020-04-23 17:13:14.899056"], ["updated_at", "2020-04-23 17:13:14.899056"], ["created_by", "6903620144"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Sapiente fugit praesentium repudiandae."], ["created_at", "2020-04-23 17:13:14.904533"], ["updated_at", "2020-04-23 17:13:14.904533"], ["created_by", "1360947732"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "minima"], ["description", "Tempora quis magnam et."], ["created_at", "2020-04-23 17:13:14.919386"], ["updated_at", "2020-04-23 17:13:14.919386"], ["created_by", "4404542036"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Fugiat soluta id architecto."], ["created_at", "2020-04-23 17:13:14.924649"], ["updated_at", "2020-04-23 17:13:14.924649"], ["created_by", "9842977452"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ut dolores quam adipisci."], ["created_at", "2020-04-23 17:13:14.940540"], ["updated_at", "2020-04-23 17:13:14.940540"], ["created_by", "7465602578"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Temporibus architecto esse ipsam."], ["created_at", "2020-04-23 17:13:14.945576"], ["updated_at", "2020-04-23 17:13:14.945576"], ["created_by", "1635851173"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Quod voluptas aut alias."], ["created_at", "2020-04-23 17:13:14.960385"], ["updated_at", "2020-04-23 17:13:14.960385"], ["created_by", "4269578856"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 14:13:14 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Ut consequatur et sint."], ["created_at", "2020-04-23 17:13:14.982976"], ["updated_at", "2020-04-23 17:13:14.982976"], ["created_by", "5752339181"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Doloribus architecto est voluptatem."], ["created_at", "2020-04-23 17:13:14.999833"], ["updated_at", "2020-04-23 17:13:14.999833"], ["created_by", "3646785535"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Quos sit sunt excepturi."], ["created_at", "2020-04-23 17:13:15.004523"], ["updated_at", "2020-04-23 17:13:15.004523"], ["created_by", "8176589276"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Non est id est."], ["created_at", "2020-04-23 17:13:15.019850"], ["updated_at", "2020-04-23 17:13:15.019850"], ["created_by", "8267544099"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Quia vel rerum ducimus."], ["created_at", "2020-04-23 17:13:15.025924"], ["updated_at", "2020-04-23 17:13:15.025924"], ["created_by", "8009282512"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Voluptatum magnam voluptas velit."], ["created_at", "2020-04-23 17:13:15.042350"], ["updated_at", "2020-04-23 17:13:15.042350"], ["created_by", "2449929798"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Sunt fugiat iste itaque."], ["created_at", "2020-04-23 17:13:15.047408"], ["updated_at", "2020-04-23 17:13:15.047408"], ["created_by", "8610080008"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Eum reiciendis sit aut."], ["created_at", "2020-04-23 17:13:15.061971"], ["updated_at", "2020-04-23 17:13:15.061971"], ["created_by", "8717734985"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Ut non vel sed."], ["created_at", "2020-04-23 17:13:15.067286"], ["updated_at", "2020-04-23 17:13:15.067286"], ["created_by", "1729358676"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Recusandae ipsa sit voluptatem."], ["created_at", "2020-04-23 17:13:15.083854"], ["updated_at", "2020-04-23 17:13:15.083854"], ["created_by", "5799120618"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 14:13:15 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (37.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Aperiam est quam nesciunt."], ["created_at", "2020-04-23 17:13:15.132813"], ["updated_at", "2020-04-23 17:13:15.132813"], ["created_by", "4408561084"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "tempore"], ["description", "Explicabo hic cum provident."], ["created_at", "2020-04-23 17:13:15.139041"], ["updated_at", "2020-04-23 17:13:15.139041"], ["created_by", "4450623406"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Aperiam et culpa qui."], ["created_at", "2020-04-23 17:13:15.142196"], ["updated_at", "2020-04-23 17:13:15.142196"], ["created_by", "9282219538"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Hic qui quis quia."], ["created_at", "2020-04-23 17:13:15.145650"], ["updated_at", "2020-04-23 17:13:15.145650"], ["created_by", "9240259145"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Veniam minima deleniti commodi."], ["created_at", "2020-04-23 17:13:15.149095"], ["updated_at", "2020-04-23 17:13:15.149095"], ["created_by", "6973782160"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "In laudantium quia voluptas."], ["created_at", "2020-04-23 17:13:15.161839"], ["updated_at", "2020-04-23 17:13:15.161839"], ["created_by", "5482295031"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Consequuntur molestiae perferendis aliquam."], ["created_at", "2020-04-23 17:13:15.166668"], ["updated_at", "2020-04-23 17:13:15.166668"], ["created_by", "8789095178"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Provident eligendi rem ducimus."], ["created_at", "2020-04-23 17:13:15.179904"], ["updated_at", "2020-04-23 17:13:15.179904"], ["created_by", "2602770718"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Delectus itaque reiciendis neque."], ["created_at", "2020-04-23 17:13:15.184803"], ["updated_at", "2020-04-23 17:13:15.184803"], ["created_by", "3339704992"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Dolor reprehenderit sed iste."], ["created_at", "2020-04-23 17:13:15.196406"], ["updated_at", "2020-04-23 17:13:15.196406"], ["created_by", "8394843430"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:13:15 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 17:13:15.200194"], ["updated_at", "2020-04-23 17:13:15.200194"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 3ms (Views: 0.8ms | ActiveRecord: 0.3ms | Allocations: 706)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (11.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Soluta ea perspiciatis sunt."], ["created_at", "2020-04-23 17:13:15.219270"], ["updated_at", "2020-04-23 17:13:15.219270"], ["created_by", "2766780591"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "illum"], ["description", "Tempore et est quis."], ["created_at", "2020-04-23 17:13:15.242347"], ["updated_at", "2020-04-23 17:13:15.242347"], ["created_by", "7569341188"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Nesciunt vitae porro est."], ["created_at", "2020-04-23 17:13:15.247169"], ["updated_at", "2020-04-23 17:13:15.247169"], ["created_by", "6435784079"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Maiores necessitatibus itaque optio."], ["created_at", "2020-04-23 17:13:15.258530"], ["updated_at", "2020-04-23 17:13:15.258530"], ["created_by", "1158158881"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Neque dicta saepe consequatur."], ["created_at", "2020-04-23 17:13:15.263095"], ["updated_at", "2020-04-23 17:13:15.263095"], ["created_by", "2079145284"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Recusandae fugit vel est."], ["created_at", "2020-04-23 17:13:15.266761"], ["updated_at", "2020-04-23 17:13:15.266761"], ["created_by", "1461422517"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Dolorum doloremque delectus ipsa."], ["created_at", "2020-04-23 17:13:15.279495"], ["updated_at", "2020-04-23 17:13:15.279495"], ["created_by", "8164555948"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Nobis a voluptatem sunt."], ["created_at", "2020-04-23 17:13:15.283829"], ["updated_at", "2020-04-23 17:13:15.283829"], ["created_by", "6729014246"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Est vel perferendis voluptas."], ["created_at", "2020-04-23 17:13:15.288046"], ["updated_at", "2020-04-23 17:13:15.288046"], ["created_by", "5009018148"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Quo ipsa error et."], ["created_at", "2020-04-23 17:13:15.300313"], ["updated_at", "2020-04-23 17:13:15.300313"], ["created_by", "3842002780"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:13:15 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 17:13:15.303316"], ["updated_at", "2020-04-23 17:13:15.303316"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 3ms (Views: 0.7ms | ActiveRecord: 0.3ms | Allocations: 739)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Facilis dolores aut quibusdam."], ["created_at", "2020-04-23 17:13:15.322558"], ["updated_at", "2020-04-23 17:13:15.322558"], ["created_by", "9735850547"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Aliquid doloribus accusantium atque."], ["created_at", "2020-04-23 17:13:15.329099"], ["updated_at", "2020-04-23 17:13:15.329099"], ["created_by", "2307855492"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Voluptatem sed illum veritatis."], ["created_at", "2020-04-23 17:13:15.341204"], ["updated_at", "2020-04-23 17:13:15.341204"], ["created_by", "1172847813"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "hic"], ["description", "Pariatur earum officiis cum."], ["created_at", "2020-04-23 17:13:15.345620"], ["updated_at", "2020-04-23 17:13:15.345620"], ["created_by", "6025290454"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "at"], ["description", "Ut repellat natus explicabo."], ["created_at", "2020-04-23 17:13:15.349816"], ["updated_at", "2020-04-23 17:13:15.349816"], ["created_by", "2610013480"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Et molestiae voluptas alias."], ["created_at", "2020-04-23 17:13:15.360070"], ["updated_at", "2020-04-23 17:13:15.360070"], ["created_by", "2255930990"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Non nesciunt eum minima."], ["created_at", "2020-04-23 17:13:15.364656"], ["updated_at", "2020-04-23 17:13:15.364656"], ["created_by", "9231711070"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Commodi voluptatum consequatur distinctio."], ["created_at", "2020-04-23 17:13:15.367971"], ["updated_at", "2020-04-23 17:13:15.367971"], ["created_by", "7888508884"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "doloribus"], ["description", "Recusandae ut doloribus et."], ["created_at", "2020-04-23 17:13:15.380461"], ["updated_at", "2020-04-23 17:13:15.380461"], ["created_by", "5376815472"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Qui fuga ea deleniti."], ["created_at", "2020-04-23 17:13:15.387449"], ["updated_at", "2020-04-23 17:13:15.387449"], ["created_by", "9234126535"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:13:15 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 854)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Dolor rerum earum quibusdam."], ["created_at", "2020-04-23 17:13:15.407229"], ["updated_at", "2020-04-23 17:13:15.407229"], ["created_by", "1486745208"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Quia totam reiciendis nisi."], ["created_at", "2020-04-23 17:13:15.420610"], ["updated_at", "2020-04-23 17:13:15.420610"], ["created_by", "3930256968"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Laudantium magni suscipit deserunt."], ["created_at", "2020-04-23 17:13:15.424924"], ["updated_at", "2020-04-23 17:13:15.424924"], ["created_by", "3561195707"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Et vitae veniam ut."], ["created_at", "2020-04-23 17:13:15.430223"], ["updated_at", "2020-04-23 17:13:15.430223"], ["created_by", "6362879893"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Qui qui officia est."], ["created_at", "2020-04-23 17:13:15.440353"], ["updated_at", "2020-04-23 17:13:15.440353"], ["created_by", "6987173527"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "magni"], ["description", "Quia et nihil molestiae."], ["created_at", "2020-04-23 17:13:15.445337"], ["updated_at", "2020-04-23 17:13:15.445337"], ["created_by", "4824356347"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "minus"], ["description", "Rerum omnis et qui."], ["created_at", "2020-04-23 17:13:15.449686"], ["updated_at", "2020-04-23 17:13:15.449686"], ["created_by", "8539610347"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Nisi voluptates eveniet minus."], ["created_at", "2020-04-23 17:13:15.460992"], ["updated_at", "2020-04-23 17:13:15.460992"], ["created_by", "4474809226"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Est enim velit eos."], ["created_at", "2020-04-23 17:13:15.464949"], ["updated_at", "2020-04-23 17:13:15.464949"], ["created_by", "6805902174"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Excepturi repellendus quis voluptates."], ["created_at", "2020-04-23 17:13:15.469416"], ["updated_at", "2020-04-23 17:13:15.469416"], ["created_by", "9217728003"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:13:15 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 854)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Provident doloribus voluptate eveniet."], ["created_at", "2020-04-23 17:13:15.487196"], ["updated_at", "2020-04-23 17:13:15.487196"], ["created_by", "6092673222"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Quia quis molestias vero."], ["created_at", "2020-04-23 17:13:15.501518"], ["updated_at", "2020-04-23 17:13:15.501518"], ["created_by", "8002681526"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Ipsam nostrum numquam architecto."], ["created_at", "2020-04-23 17:13:15.506426"], ["updated_at", "2020-04-23 17:13:15.506426"], ["created_by", "9824605972"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Inventore explicabo tenetur rerum."], ["created_at", "2020-04-23 17:13:15.511436"], ["updated_at", "2020-04-23 17:13:15.511436"], ["created_by", "4118639028"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Quidem qui expedita voluptas."], ["created_at", "2020-04-23 17:13:15.522275"], ["updated_at", "2020-04-23 17:13:15.522275"], ["created_by", "2116926623"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "modi"], ["description", "Tempore facilis est eum."], ["created_at", "2020-04-23 17:13:15.526396"], ["updated_at", "2020-04-23 17:13:15.526396"], ["created_by", "6467589768"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Atque et ea explicabo."], ["created_at", "2020-04-23 17:13:15.530112"], ["updated_at", "2020-04-23 17:13:15.530112"], ["created_by", "1992503451"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Tempora quo quidem error."], ["created_at", "2020-04-23 17:13:15.541055"], ["updated_at", "2020-04-23 17:13:15.541055"], ["created_by", "4490671140"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Est quod unde voluptas."], ["created_at", "2020-04-23 17:13:15.546647"], ["updated_at", "2020-04-23 17:13:15.546647"], ["created_by", "2896577423"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Id at dolores quia."], ["created_at", "2020-04-23 17:13:15.559771"], ["updated_at", "2020-04-23 17:13:15.559771"], ["created_by", "3205437760"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 14:13:15 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 17:13:15.564336"], ["id", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 729)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Accusantium animi pariatur consequuntur."], ["created_at", "2020-04-23 17:13:15.584242"], ["updated_at", "2020-04-23 17:13:15.584242"], ["created_by", "1683126842"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Doloribus sint illo omnis."], ["created_at", "2020-04-23 17:13:15.590928"], ["updated_at", "2020-04-23 17:13:15.590928"], ["created_by", "9008532864"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Ex veniam a quae."], ["created_at", "2020-04-23 17:13:15.602531"], ["updated_at", "2020-04-23 17:13:15.602531"], ["created_by", "2613390989"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Pariatur hic distinctio saepe."], ["created_at", "2020-04-23 17:13:15.608151"], ["updated_at", "2020-04-23 17:13:15.608151"], ["created_by", "1963992355"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "eius"], ["description", "Rem eveniet eum officiis."], ["created_at", "2020-04-23 17:13:15.620550"], ["updated_at", "2020-04-23 17:13:15.620550"], ["created_by", "3694985476"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Iure porro consequatur ut."], ["created_at", "2020-04-23 17:13:15.626872"], ["updated_at", "2020-04-23 17:13:15.626872"], ["created_by", "6024424992"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Delectus voluptatem nam ullam."], ["created_at", "2020-04-23 17:13:15.632377"], ["updated_at", "2020-04-23 17:13:15.632377"], ["created_by", "1076949834"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Ut aliquid et dolore."], ["created_at", "2020-04-23 17:13:15.642519"], ["updated_at", "2020-04-23 17:13:15.642519"], ["created_by", "7606612876"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Dolorem necessitatibus reprehenderit temporibus."], ["created_at", "2020-04-23 17:13:15.648168"], ["updated_at", "2020-04-23 17:13:15.648168"], ["created_by", "8979762835"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Consequatur fugiat minus sint."], ["created_at", "2020-04-23 17:13:15.664568"], ["updated_at", "2020-04-23 17:13:15.664568"], ["created_by", "3105469399"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 14:13:15 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 17:13:15.668161"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 710)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (9.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "At modi ut sit."], ["created_at", "2020-04-23 17:13:15.687182"], ["updated_at", "2020-04-23 17:13:15.687182"], ["created_by", "9324810241"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Consectetur fugit dolore maxime."], ["created_at", "2020-04-23 17:13:15.702447"], ["updated_at", "2020-04-23 17:13:15.702447"], ["created_by", "9595585709"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Enim consectetur esse qui."], ["created_at", "2020-04-23 17:13:15.706594"], ["updated_at", "2020-04-23 17:13:15.706594"], ["created_by", "2207803030"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "In unde voluptatibus distinctio."], ["created_at", "2020-04-23 17:13:15.710619"], ["updated_at", "2020-04-23 17:13:15.710619"], ["created_by", "1747892167"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Dolorem voluptatum quam quae."], ["created_at", "2020-04-23 17:13:15.726602"], ["updated_at", "2020-04-23 17:13:15.726602"], ["created_by", "1294569085"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Ab voluptates non sint."], ["created_at", "2020-04-23 17:13:15.732181"], ["updated_at", "2020-04-23 17:13:15.732181"], ["created_by", "9089471693"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Quod cumque id deleniti."], ["created_at", "2020-04-23 17:13:15.744395"], ["updated_at", "2020-04-23 17:13:15.744395"], ["created_by", "8517988735"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Similique facere dolores incidunt."], ["created_at", "2020-04-23 17:13:15.749735"], ["updated_at", "2020-04-23 17:13:15.749735"], ["created_by", "7179105275"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "minima"], ["description", "Illo qui non ut."], ["created_at", "2020-04-23 17:13:15.762820"], ["updated_at", "2020-04-23 17:13:15.762820"], ["created_by", "2046483407"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "earum"], ["description", "Cumque architecto sapiente accusamus."], ["created_at", "2020-04-23 17:13:15.768408"], ["updated_at", "2020-04-23 17:13:15.768408"], ["created_by", "8738418190"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-04-23 14:13:15 -0300
+Processing by MeetsController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mMeet Destroy (0.7ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 1.0ms | Allocations: 600)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (10.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (211.9ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (102.5ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (105.1ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Libero sit dolor sit."], ["created_at", "2020-04-23 17:20:04.232258"], ["updated_at", "2020-04-23 17:20:04.232258"], ["created_by", "9015574431"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta fugit minus explicabo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.250544"], ["updated_at", "2020-04-23 17:20:04.250544"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint dolores suscipit ipsam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.253054"], ["updated_at", "2020-04-23 17:20:04.253054"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi tempore quia nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.255016"], ["updated_at", "2020-04-23 17:20:04.255016"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Natus vitae modi eos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.256986"], ["updated_at", "2020-04-23 17:20:04.256986"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto qui autem eum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.258812"], ["updated_at", "2020-04-23 17:20:04.258812"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et sit qui exercitationem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.261582"], ["updated_at", "2020-04-23 17:20:04.261582"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta vitae rem pariatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.263966"], ["updated_at", "2020-04-23 17:20:04.263966"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut vero unde porro?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.266067"], ["updated_at", "2020-04-23 17:20:04.266067"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis beatae vel qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.267952"], ["updated_at", "2020-04-23 17:20:04.267952"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum laborum et quae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.270471"], ["updated_at", "2020-04-23 17:20:04.270471"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis et ut non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.272437"], ["updated_at", "2020-04-23 17:20:04.272437"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur deleniti ducimus voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.274388"], ["updated_at", "2020-04-23 17:20:04.274388"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloribus libero eius tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.276293"], ["updated_at", "2020-04-23 17:20:04.276293"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ab doloremque expedita voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.278214"], ["updated_at", "2020-04-23 17:20:04.278214"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum aut libero nisi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.280302"], ["updated_at", "2020-04-23 17:20:04.280302"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloribus nisi enim deserunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.282662"], ["updated_at", "2020-04-23 17:20:04.282662"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel quibusdam veritatis velit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.284851"], ["updated_at", "2020-04-23 17:20:04.284851"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel vitae architecto autem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.287043"], ["updated_at", "2020-04-23 17:20:04.287043"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas reprehenderit in dolore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.288940"], ["updated_at", "2020-04-23 17:20:04.288940"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti exercitationem perferendis numquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.290864"], ["updated_at", "2020-04-23 17:20:04.290864"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:20:04 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 23ms (Views: 8.0ms | ActiveRecord: 0.4ms | Allocations: 6216)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Corrupti atque deserunt est."], ["created_at", "2020-04-23 17:20:04.346701"], ["updated_at", "2020-04-23 17:20:04.346701"], ["created_by", "2009755478"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officiis quibusdam eum odit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.351008"], ["updated_at", "2020-04-23 17:20:04.351008"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Veritatis nihil asperiores dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.353185"], ["updated_at", "2020-04-23 17:20:04.353185"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deleniti laboriosam et velit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.355057"], ["updated_at", "2020-04-23 17:20:04.355057"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae non ullam nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.357008"], ["updated_at", "2020-04-23 17:20:04.357008"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis veniam sit voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.358679"], ["updated_at", "2020-04-23 17:20:04.358679"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Explicabo iure voluptatum harum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.360570"], ["updated_at", "2020-04-23 17:20:04.360570"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti cupiditate vel fuga?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.362937"], ["updated_at", "2020-04-23 17:20:04.362937"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis natus vel temporibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.365204"], ["updated_at", "2020-04-23 17:20:04.365204"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Possimus voluptatem exercitationem molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.367149"], ["updated_at", "2020-04-23 17:20:04.367149"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sapiente inventore est fugit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.369582"], ["updated_at", "2020-04-23 17:20:04.369582"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia fuga est qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.371366"], ["updated_at", "2020-04-23 17:20:04.371366"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut et harum expedita?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.373046"], ["updated_at", "2020-04-23 17:20:04.373046"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Alias qui et repellendus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.374871"], ["updated_at", "2020-04-23 17:20:04.374871"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam at natus repellat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.376732"], ["updated_at", "2020-04-23 17:20:04.376732"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea harum officiis at?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.378532"], ["updated_at", "2020-04-23 17:20:04.378532"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis dolor numquam suscipit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.380557"], ["updated_at", "2020-04-23 17:20:04.380557"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequuntur consequatur placeat enim?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.382773"], ["updated_at", "2020-04-23 17:20:04.382773"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Illo aut aut blanditiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.384663"], ["updated_at", "2020-04-23 17:20:04.384663"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel rerum expedita eveniet?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.386454"], ["updated_at", "2020-04-23 17:20:04.386454"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem quae maxime et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.388282"], ["updated_at", "2020-04-23 17:20:04.388282"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:20:04 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.3ms | Allocations: 4188)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Debitis aliquam recusandae est."], ["created_at", "2020-04-23 17:20:04.414219"], ["updated_at", "2020-04-23 17:20:04.414219"], ["created_by", "5276315558"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil autem sunt repudiandae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.418391"], ["updated_at", "2020-04-23 17:20:04.418391"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint explicabo assumenda aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.420901"], ["updated_at", "2020-04-23 17:20:04.420901"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut eaque voluptas reiciendis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.423627"], ["updated_at", "2020-04-23 17:20:04.423627"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti ex porro id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.425883"], ["updated_at", "2020-04-23 17:20:04.425883"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia quia id quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.427838"], ["updated_at", "2020-04-23 17:20:04.427838"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quod consequuntur corporis quos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.429643"], ["updated_at", "2020-04-23 17:20:04.429643"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cumque et illum fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.431373"], ["updated_at", "2020-04-23 17:20:04.431373"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis enim debitis voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.432989"], ["updated_at", "2020-04-23 17:20:04.432989"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laudantium minima dolorem ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.434751"], ["updated_at", "2020-04-23 17:20:04.434751"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut non iusto tenetur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.437225"], ["updated_at", "2020-04-23 17:20:04.437225"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut voluptas rem molestiae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.438975"], ["updated_at", "2020-04-23 17:20:04.438975"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus natus repellat voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.441276"], ["updated_at", "2020-04-23 17:20:04.441276"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor omnis temporibus occaecati?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.443727"], ["updated_at", "2020-04-23 17:20:04.443727"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Recusandae ut et suscipit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.445768"], ["updated_at", "2020-04-23 17:20:04.445768"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reprehenderit officiis beatae magnam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.447679"], ["updated_at", "2020-04-23 17:20:04.447679"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Praesentium doloremque rerum quas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.449406"], ["updated_at", "2020-04-23 17:20:04.449406"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Amet ut delectus quos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.451254"], ["updated_at", "2020-04-23 17:20:04.451254"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est ea quia sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.453100"], ["updated_at", "2020-04-23 17:20:04.453100"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repudiandae temporibus est quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.454913"], ["updated_at", "2020-04-23 17:20:04.454913"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia consequatur quia est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.456679"], ["updated_at", "2020-04-23 17:20:04.456679"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 14:20:04 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Ipsa quis iste nostrum."], ["created_at", "2020-04-23 17:20:04.472417"], ["updated_at", "2020-04-23 17:20:04.472417"], ["created_by", "8868969316"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Impedit quaerat culpa enim?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.476767"], ["updated_at", "2020-04-23 17:20:04.476767"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In perferendis voluptas nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.479479"], ["updated_at", "2020-04-23 17:20:04.479479"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Recusandae vel itaque nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.482229"], ["updated_at", "2020-04-23 17:20:04.482229"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laudantium ab error harum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.484500"], ["updated_at", "2020-04-23 17:20:04.484500"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellat enim nulla vel?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.486623"], ["updated_at", "2020-04-23 17:20:04.486623"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis id dolore beatae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.488660"], ["updated_at", "2020-04-23 17:20:04.488660"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsam nobis suscipit dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.490797"], ["updated_at", "2020-04-23 17:20:04.490797"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores pariatur est voluptatibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.492674"], ["updated_at", "2020-04-23 17:20:04.492674"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit illum rerum error?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.494436"], ["updated_at", "2020-04-23 17:20:04.494436"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia nesciunt eius officia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.496981"], ["updated_at", "2020-04-23 17:20:04.496981"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea adipisci aliquid illo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.498848"], ["updated_at", "2020-04-23 17:20:04.498848"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quam deleniti excepturi ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.500716"], ["updated_at", "2020-04-23 17:20:04.500716"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ex omnis non quibusdam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.505512"], ["updated_at", "2020-04-23 17:20:04.505512"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati nam eaque dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.508266"], ["updated_at", "2020-04-23 17:20:04.508266"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Blanditiis optio consequatur enim?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.510406"], ["updated_at", "2020-04-23 17:20:04.510406"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Distinctio voluptas suscipit rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.512309"], ["updated_at", "2020-04-23 17:20:04.512309"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolores est in atque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.514269"], ["updated_at", "2020-04-23 17:20:04.514269"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae placeat dolor quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.516334"], ["updated_at", "2020-04-23 17:20:04.516334"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Excepturi et repellendus tenetur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.518221"], ["updated_at", "2020-04-23 17:20:04.518221"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem rerum molestiae facilis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.520165"], ["updated_at", "2020-04-23 17:20:04.520165"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-04-23 14:20:04 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 211)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (21.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "iste"], ["description", "Non ut quaerat amet."], ["created_at", "2020-04-23 17:20:04.556551"], ["updated_at", "2020-04-23 17:20:04.556551"], ["created_by", "6055867197"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis consequatur tenetur reiciendis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.562008"], ["updated_at", "2020-04-23 17:20:04.562008"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Neque sed numquam dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.566243"], ["updated_at", "2020-04-23 17:20:04.566243"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsum est qui assumenda?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.568297"], ["updated_at", "2020-04-23 17:20:04.568297"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rem culpa assumenda doloremque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.570102"], ["updated_at", "2020-04-23 17:20:04.570102"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas tempore quidem culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.571861"], ["updated_at", "2020-04-23 17:20:04.571861"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Alias occaecati cupiditate accusamus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.573647"], ["updated_at", "2020-04-23 17:20:04.573647"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "At qui dolorem impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.575428"], ["updated_at", "2020-04-23 17:20:04.575428"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui omnis maxime nisi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.577202"], ["updated_at", "2020-04-23 17:20:04.577202"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut veniam et qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.578819"], ["updated_at", "2020-04-23 17:20:04.578819"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et id magni distinctio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.582088"], ["updated_at", "2020-04-23 17:20:04.582088"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam et eveniet nostrum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.585827"], ["updated_at", "2020-04-23 17:20:04.585827"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Architecto ducimus minima quis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.587937"], ["updated_at", "2020-04-23 17:20:04.587937"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non eligendi et ipsam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.589800"], ["updated_at", "2020-04-23 17:20:04.589800"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo qui perspiciatis veniam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.591818"], ["updated_at", "2020-04-23 17:20:04.591818"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error ipsum officiis magni?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.593884"], ["updated_at", "2020-04-23 17:20:04.593884"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et ducimus aut sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.597652"], ["updated_at", "2020-04-23 17:20:04.597652"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Iusto eligendi ipsa distinctio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.599459"], ["updated_at", "2020-04-23 17:20:04.599459"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolor doloribus perspiciatis sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.601840"], ["updated_at", "2020-04-23 17:20:04.601840"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est eius veritatis ducimus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.606442"], ["updated_at", "2020-04-23 17:20:04.606442"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit eaque officiis ratione?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.609013"], ["updated_at", "2020-04-23 17:20:04.609013"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:20:04 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.3ms | Allocations: 720)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Veniam ipsam est eaque."], ["created_at", "2020-04-23 17:20:04.629160"], ["updated_at", "2020-04-23 17:20:04.629160"], ["created_by", "1415199051"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Doloremque voluptas sint fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.634658"], ["updated_at", "2020-04-23 17:20:04.634658"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit eum voluptatem velit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.637905"], ["updated_at", "2020-04-23 17:20:04.637905"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rem a facere id?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.639971"], ["updated_at", "2020-04-23 17:20:04.639971"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolorum modi sit voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.642523"], ["updated_at", "2020-04-23 17:20:04.642523"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta sequi in natus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.647203"], ["updated_at", "2020-04-23 17:20:04.647203"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Provident sunt labore sequi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.649499"], ["updated_at", "2020-04-23 17:20:04.649499"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Excepturi amet architecto sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.651480"], ["updated_at", "2020-04-23 17:20:04.651480"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur est sed dignissimos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.654232"], ["updated_at", "2020-04-23 17:20:04.654232"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Assumenda est asperiores quis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.656724"], ["updated_at", "2020-04-23 17:20:04.656724"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Optio eum autem commodi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.659393"], ["updated_at", "2020-04-23 17:20:04.659393"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsum voluptates sunt omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.661934"], ["updated_at", "2020-04-23 17:20:04.661934"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et libero recusandae vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.666242"], ["updated_at", "2020-04-23 17:20:04.666242"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem quos error vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.668428"], ["updated_at", "2020-04-23 17:20:04.668428"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Earum facere quo eum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.670914"], ["updated_at", "2020-04-23 17:20:04.670914"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nobis illum omnis veritatis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.672997"], ["updated_at", "2020-04-23 17:20:04.672997"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Incidunt cupiditate cumque excepturi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.675119"], ["updated_at", "2020-04-23 17:20:04.675119"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In esse saepe omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.677001"], ["updated_at", "2020-04-23 17:20:04.677001"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi ratione deserunt error?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.678806"], ["updated_at", "2020-04-23 17:20:04.678806"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Assumenda reprehenderit cumque nesciunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.680519"], ["updated_at", "2020-04-23 17:20:04.680519"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.9ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Debitis et ut molestias?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.683177"], ["updated_at", "2020-04-23 17:20:04.683177"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:20:04 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 692)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Nostrum dolores fuga id."], ["created_at", "2020-04-23 17:20:04.702749"], ["updated_at", "2020-04-23 17:20:04.702749"], ["created_by", "9355641891"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Provident voluptas alias veritatis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.709014"], ["updated_at", "2020-04-23 17:20:04.709014"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aperiam omnis tempore exercitationem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.711790"], ["updated_at", "2020-04-23 17:20:04.711790"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptate necessitatibus sit nemo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.713622"], ["updated_at", "2020-04-23 17:20:04.713622"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil molestiae quas omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.715517"], ["updated_at", "2020-04-23 17:20:04.715517"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ratione cumque perferendis tempore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.717134"], ["updated_at", "2020-04-23 17:20:04.717134"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Excepturi quaerat ea dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.718739"], ["updated_at", "2020-04-23 17:20:04.718739"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Delectus id ut commodi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.720390"], ["updated_at", "2020-04-23 17:20:04.720390"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat accusamus quae hic?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.722664"], ["updated_at", "2020-04-23 17:20:04.722664"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quod excepturi maiores voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.726920"], ["updated_at", "2020-04-23 17:20:04.726920"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquid magni explicabo ullam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.729749"], ["updated_at", "2020-04-23 17:20:04.729749"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Optio totam nihil consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.732227"], ["updated_at", "2020-04-23 17:20:04.732227"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Suscipit odio voluptatem et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.734315"], ["updated_at", "2020-04-23 17:20:04.734315"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Numquam et necessitatibus beatae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.736650"], ["updated_at", "2020-04-23 17:20:04.736650"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non cumque consectetur eum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.738620"], ["updated_at", "2020-04-23 17:20:04.738620"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error repudiandae illum magni?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.740291"], ["updated_at", "2020-04-23 17:20:04.740291"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Neque veritatis velit quaerat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.742307"], ["updated_at", "2020-04-23 17:20:04.742307"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nemo a sunt porro?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.746747"], ["updated_at", "2020-04-23 17:20:04.746747"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui ad maxime qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.749010"], ["updated_at", "2020-04-23 17:20:04.749010"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perspiciatis ipsa consequatur atque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.751139"], ["updated_at", "2020-04-23 17:20:04.751139"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et quae exercitationem corporis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.753141"], ["updated_at", "2020-04-23 17:20:04.753141"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:20:04 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 584)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Labore id incidunt reprehenderit."], ["created_at", "2020-04-23 17:20:04.771206"], ["updated_at", "2020-04-23 17:20:04.771206"], ["created_by", "6107717667"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perspiciatis architecto nulla itaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.775720"], ["updated_at", "2020-04-23 17:20:04.775720"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita enim magnam nisi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.777920"], ["updated_at", "2020-04-23 17:20:04.777920"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis asperiores fugiat sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.779698"], ["updated_at", "2020-04-23 17:20:04.779698"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Incidunt voluptatem a esse?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.781420"], ["updated_at", "2020-04-23 17:20:04.781420"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita natus eum reiciendis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.784834"], ["updated_at", "2020-04-23 17:20:04.784834"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nesciunt ut rerum corporis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.788370"], ["updated_at", "2020-04-23 17:20:04.788370"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non consequatur explicabo aliquid?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.791631"], ["updated_at", "2020-04-23 17:20:04.791631"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et aut ad consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.793846"], ["updated_at", "2020-04-23 17:20:04.793846"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consectetur aliquam quis provident?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.795709"], ["updated_at", "2020-04-23 17:20:04.795709"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatum illum ipsam autem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.798184"], ["updated_at", "2020-04-23 17:20:04.798184"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut ducimus natus molestias?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.799874"], ["updated_at", "2020-04-23 17:20:04.799874"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corporis iusto impedit et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.801629"], ["updated_at", "2020-04-23 17:20:04.801629"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates dicta praesentium velit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.805122"], ["updated_at", "2020-04-23 17:20:04.805122"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia ex ut totam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.808003"], ["updated_at", "2020-04-23 17:20:04.808003"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nulla fugit consectetur accusantium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.810050"], ["updated_at", "2020-04-23 17:20:04.810050"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Harum modi eaque debitis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.812204"], ["updated_at", "2020-04-23 17:20:04.812204"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit corporis quia non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.814054"], ["updated_at", "2020-04-23 17:20:04.814054"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nihil suscipit sapiente qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.815753"], ["updated_at", "2020-04-23 17:20:04.815753"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Molestiae consequatur asperiores unde?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.817300"], ["updated_at", "2020-04-23 17:20:04.817300"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Maiores autem omnis molestias?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.818848"], ["updated_at", "2020-04-23 17:20:04.818848"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:20:04 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 567)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (26.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Aliquam aut ut totam."], ["created_at", "2020-04-23 17:20:04.890242"], ["updated_at", "2020-04-23 17:20:04.890242"], ["created_by", "8254852382"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "At aut quod doloremque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.895229"], ["updated_at", "2020-04-23 17:20:04.895229"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ab sit quod sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.897598"], ["updated_at", "2020-04-23 17:20:04.897598"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus est officia molestias?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.899536"], ["updated_at", "2020-04-23 17:20:04.899536"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error id eligendi qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.901564"], ["updated_at", "2020-04-23 17:20:04.901564"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Earum magnam qui sit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.905198"], ["updated_at", "2020-04-23 17:20:04.905198"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et rerum voluptates porro?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.909158"], ["updated_at", "2020-04-23 17:20:04.909158"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Id eum repellat vitae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.911475"], ["updated_at", "2020-04-23 17:20:04.911475"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et deleniti odio officia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.913411"], ["updated_at", "2020-04-23 17:20:04.913411"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Atque odit perspiciatis tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.915502"], ["updated_at", "2020-04-23 17:20:04.915502"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error aspernatur aliquam dolorum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.918090"], ["updated_at", "2020-04-23 17:20:04.918090"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequuntur maiores nulla pariatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.920258"], ["updated_at", "2020-04-23 17:20:04.920258"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptas laborum doloremque adipisci?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.922151"], ["updated_at", "2020-04-23 17:20:04.922151"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut libero dolor quidem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.925242"], ["updated_at", "2020-04-23 17:20:04.925242"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique est soluta est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.928511"], ["updated_at", "2020-04-23 17:20:04.928511"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Autem necessitatibus et rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.930346"], ["updated_at", "2020-04-23 17:20:04.930346"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Pariatur nobis earum optio?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.932174"], ["updated_at", "2020-04-23 17:20:04.932174"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Libero quia recusandae voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.934106"], ["updated_at", "2020-04-23 17:20:04.934106"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Labore voluptatum et sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.936110"], ["updated_at", "2020-04-23 17:20:04.936110"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique odio fugiat modi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.937810"], ["updated_at", "2020-04-23 17:20:04.937810"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Labore harum hic sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.939689"], ["updated_at", "2020-04-23 17:20:04.939689"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:20:04 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"title"=>"Visit Narnia", "description"=>"false", "meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Visit Narnia"], ["description", "false"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.960219"], ["updated_at", "2020-04-23 17:20:04.960219"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 4ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1142)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Omnis assumenda vel consequuntur."], ["created_at", "2020-04-23 17:20:04.976165"], ["updated_at", "2020-04-23 17:20:04.976165"], ["created_by", "6807436665"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Deserunt eos reiciendis occaecati?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.981652"], ["updated_at", "2020-04-23 17:20:04.981652"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quibusdam eligendi expedita quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.985944"], ["updated_at", "2020-04-23 17:20:04.985944"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sint est maiores et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.988487"], ["updated_at", "2020-04-23 17:20:04.988487"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quas veritatis culpa et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.990653"], ["updated_at", "2020-04-23 17:20:04.990653"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Similique ratione unde rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.992854"], ["updated_at", "2020-04-23 17:20:04.992854"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odio et fugit voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.994871"], ["updated_at", "2020-04-23 17:20:04.994871"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis ad excepturi error?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.997031"], ["updated_at", "2020-04-23 17:20:04.997031"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officia et voluptatem ipsum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:04.998658"], ["updated_at", "2020-04-23 17:20:04.998658"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (23.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellendus qui iure placeat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.000216"], ["updated_at", "2020-04-23 17:20:05.000216"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis veritatis id repellat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.026521"], ["updated_at", "2020-04-23 17:20:05.026521"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quibusdam cum ad soluta?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.028810"], ["updated_at", "2020-04-23 17:20:05.028810"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Error eos sint sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.030942"], ["updated_at", "2020-04-23 17:20:05.030942"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eius ut libero impedit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.032892"], ["updated_at", "2020-04-23 17:20:05.032892"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cum quas odit ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.034620"], ["updated_at", "2020-04-23 17:20:05.034620"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Asperiores iusto adipisci et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.036261"], ["updated_at", "2020-04-23 17:20:05.036261"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "At laborum explicabo dolorem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.037788"], ["updated_at", "2020-04-23 17:20:05.037788"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dignissimos fuga nemo quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.039382"], ["updated_at", "2020-04-23 17:20:05.039382"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui eum aliquid voluptate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.041009"], ["updated_at", "2020-04-23 17:20:05.041009"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Vel est quia qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.042798"], ["updated_at", "2020-04-23 17:20:05.042798"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia ipsum quas et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.046471"], ["updated_at", "2020-04-23 17:20:05.046471"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1147)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Recusandae voluptatem voluptas labore."], ["created_at", "2020-04-23 17:20:05.064174"], ["updated_at", "2020-04-23 17:20:05.064174"], ["created_by", "1340151299"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem quo neque esse?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.069348"], ["updated_at", "2020-04-23 17:20:05.069348"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui explicabo est et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.071762"], ["updated_at", "2020-04-23 17:20:05.071762"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dicta aut odit tenetur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.073857"], ["updated_at", "2020-04-23 17:20:05.073857"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Suscipit natus et non?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.076037"], ["updated_at", "2020-04-23 17:20:05.076037"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Illo saepe repellendus ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.077965"], ["updated_at", "2020-04-23 17:20:05.077965"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eos est doloremque illo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.079738"], ["updated_at", "2020-04-23 17:20:05.079738"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Placeat nulla est deleniti?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.082312"], ["updated_at", "2020-04-23 17:20:05.082312"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Recusandae ratione blanditiis deserunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.085005"], ["updated_at", "2020-04-23 17:20:05.085005"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (20.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.0ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquid sit doloribus ipsa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.108176"], ["updated_at", "2020-04-23 17:20:05.108176"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Soluta quisquam beatae esse?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.111780"], ["updated_at", "2020-04-23 17:20:05.111780"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Explicabo ratione eos tenetur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.113944"], ["updated_at", "2020-04-23 17:20:05.113944"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aliquid ab est assumenda?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.115895"], ["updated_at", "2020-04-23 17:20:05.115895"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minus omnis eum quam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.117762"], ["updated_at", "2020-04-23 17:20:05.117762"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nostrum tempora officia cum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.119572"], ["updated_at", "2020-04-23 17:20:05.119572"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum totam necessitatibus dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.121363"], ["updated_at", "2020-04-23 17:20:05.121363"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reiciendis soluta omnis voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.123178"], ["updated_at", "2020-04-23 17:20:05.123178"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est natus ullam nobis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.125331"], ["updated_at", "2020-04-23 17:20:05.125331"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Assumenda ex aut odit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.128062"], ["updated_at", "2020-04-23 17:20:05.128062"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Provident molestiae molestiae aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.129993"], ["updated_at", "2020-04-23 17:20:05.129993"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Accusamus dolorem aliquam reiciendis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.131825"], ["updated_at", "2020-04-23 17:20:05.131825"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :meet_id[0m
+Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1126)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Quibusdam aut in et."], ["created_at", "2020-04-23 17:20:05.149046"], ["updated_at", "2020-04-23 17:20:05.149046"], ["created_by", "4557661246"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Numquam qui repellendus molestias?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.152908"], ["updated_at", "2020-04-23 17:20:05.152908"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatum rerum consequatur nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.154904"], ["updated_at", "2020-04-23 17:20:05.154904"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Impedit sed vel quasi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.156841"], ["updated_at", "2020-04-23 17:20:05.156841"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Blanditiis et veritatis praesentium?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.158671"], ["updated_at", "2020-04-23 17:20:05.158671"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati eveniet neque nam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.160455"], ["updated_at", "2020-04-23 17:20:05.160455"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Expedita aspernatur magni numquam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.162190"], ["updated_at", "2020-04-23 17:20:05.162190"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatum consequatur hic quo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.164027"], ["updated_at", "2020-04-23 17:20:05.164027"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Qui temporibus sit sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.166788"], ["updated_at", "2020-04-23 17:20:05.166788"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Odit dignissimos optio nesciunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.168828"], ["updated_at", "2020-04-23 17:20:05.168828"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Suscipit et et provident?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.171302"], ["updated_at", "2020-04-23 17:20:05.171302"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laudantium et aut nemo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.173085"], ["updated_at", "2020-04-23 17:20:05.173085"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Porro ipsum deserunt reprehenderit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.174879"], ["updated_at", "2020-04-23 17:20:05.174879"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates ut eveniet soluta?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.176559"], ["updated_at", "2020-04-23 17:20:05.176559"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et natus amet eos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.178190"], ["updated_at", "2020-04-23 17:20:05.178190"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reprehenderit harum facere magni?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.179874"], ["updated_at", "2020-04-23 17:20:05.179874"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ipsum voluptatem soluta officia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.181545"], ["updated_at", "2020-04-23 17:20:05.181545"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Hic vero mollitia ducimus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.183243"], ["updated_at", "2020-04-23 17:20:05.183243"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minus natus repudiandae eaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.185522"], ["updated_at", "2020-04-23 17:20:05.185522"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Laboriosam voluptas pariatur cumque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.188007"], ["updated_at", "2020-04-23 17:20:05.188007"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem sed alias et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.190542"], ["updated_at", "2020-04-23 17:20:05.190542"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Update (0.2ms)[0m [1m[33mUPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ?[0m [["title", "Mozart"], ["updated_at", "2020-04-23 17:20:05.194770"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1093)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Ea repudiandae quia veniam."], ["created_at", "2020-04-23 17:20:05.209682"], ["updated_at", "2020-04-23 17:20:05.209682"], ["created_by", "1902873906"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Est neque veniam occaecati?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.214170"], ["updated_at", "2020-04-23 17:20:05.214170"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem molestiae rem consequuntur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.216629"], ["updated_at", "2020-04-23 17:20:05.216629"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut quia voluptas minima?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.218465"], ["updated_at", "2020-04-23 17:20:05.218465"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In enim necessitatibus iure?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.220322"], ["updated_at", "2020-04-23 17:20:05.220322"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rem reiciendis dolor dolores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.222152"], ["updated_at", "2020-04-23 17:20:05.222152"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut ut aperiam reprehenderit?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.224034"], ["updated_at", "2020-04-23 17:20:05.224034"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repudiandae numquam magnam dicta?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.227036"], ["updated_at", "2020-04-23 17:20:05.227036"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Reprehenderit ab voluptates culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.230364"], ["updated_at", "2020-04-23 17:20:05.230364"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati impedit magni et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.232423"], ["updated_at", "2020-04-23 17:20:05.232423"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Provident est earum sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.235780"], ["updated_at", "2020-04-23 17:20:05.235780"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit impedit vel expedita?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.238081"], ["updated_at", "2020-04-23 17:20:05.238081"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In est reprehenderit minus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.240085"], ["updated_at", "2020-04-23 17:20:05.240085"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Architecto ex laudantium sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.242081"], ["updated_at", "2020-04-23 17:20:05.242081"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptate est voluptatem omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.244050"], ["updated_at", "2020-04-23 17:20:05.244050"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Dolore iusto impedit eos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.247414"], ["updated_at", "2020-04-23 17:20:05.247414"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Natus sit nemo et?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.249806"], ["updated_at", "2020-04-23 17:20:05.249806"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minima et quia rerum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.252399"], ["updated_at", "2020-04-23 17:20:05.252399"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem alias cum cupiditate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.254682"], ["updated_at", "2020-04-23 17:20:05.254682"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tenetur molestias harum fugiat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.256648"], ["updated_at", "2020-04-23 17:20:05.256648"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ea vitae voluptas dolorum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.258442"], ["updated_at", "2020-04-23 17:20:05.258442"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :meet_id, :id[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Update (0.1ms)[0m [1m[33mUPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ?[0m [["title", "Mozart"], ["updated_at", "2020-04-23 17:20:05.261878"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 1029)
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Modi doloremque itaque accusamus."], ["created_at", "2020-04-23 17:20:05.278115"], ["updated_at", "2020-04-23 17:20:05.278115"], ["created_by", "8693478742"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Rerum est qui nemo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.282163"], ["updated_at", "2020-04-23 17:20:05.282163"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repellat inventore est ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.284492"], ["updated_at", "2020-04-23 17:20:05.284492"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut delectus quod qui?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.287308"], ["updated_at", "2020-04-23 17:20:05.287308"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Alias debitis velit sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.289967"], ["updated_at", "2020-04-23 17:20:05.289967"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Esse error quia sed?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.291974"], ["updated_at", "2020-04-23 17:20:05.291974"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nisi dolorem sint illo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.293722"], ["updated_at", "2020-04-23 17:20:05.293722"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ullam aliquid aut sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.295456"], ["updated_at", "2020-04-23 17:20:05.295456"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non accusamus quia enim?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.297174"], ["updated_at", "2020-04-23 17:20:05.297174"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatum dolores ut neque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.298868"], ["updated_at", "2020-04-23 17:20:05.298868"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quasi iusto unde error?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.301189"], ["updated_at", "2020-04-23 17:20:05.301189"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia et est cumque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.302924"], ["updated_at", "2020-04-23 17:20:05.302924"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eaque a impedit commodi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.304658"], ["updated_at", "2020-04-23 17:20:05.304658"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequuntur cum magnam totam?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.307595"], ["updated_at", "2020-04-23 17:20:05.307595"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequatur ducimus deserunt illum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.309583"], ["updated_at", "2020-04-23 17:20:05.309583"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Eum nihil fugit aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.311322"], ["updated_at", "2020-04-23 17:20:05.311322"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Nulla incidunt id veritatis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.313041"], ["updated_at", "2020-04-23 17:20:05.313041"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Non sed ex asperiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.314782"], ["updated_at", "2020-04-23 17:20:05.314782"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sit eum culpa aut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.316667"], ["updated_at", "2020-04-23 17:20:05.316667"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quis voluptate esse ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.318302"], ["updated_at", "2020-04-23 17:20:05.318302"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quia ut reiciendis voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.320012"], ["updated_at", "2020-04-23 17:20:05.320012"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 568)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Magnam delectus et ipsum."], ["created_at", "2020-04-23 17:20:05.334883"], ["updated_at", "2020-04-23 17:20:05.334883"], ["created_by", "3627888820"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sunt ut maiores modi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.338758"], ["updated_at", "2020-04-23 17:20:05.338758"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptatem laboriosam ut consequatur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.341089"], ["updated_at", "2020-04-23 17:20:05.341089"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis facere ipsum sequi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.343153"], ["updated_at", "2020-04-23 17:20:05.343153"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Atque et non eius?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.344989"], ["updated_at", "2020-04-23 17:20:05.344989"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quae quam consequatur nihil?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.348776"], ["updated_at", "2020-04-23 17:20:05.348776"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Hic quas recusandae eaque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.351126"], ["updated_at", "2020-04-23 17:20:05.351126"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et quis beatae maiores?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.353411"], ["updated_at", "2020-04-23 17:20:05.353411"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ex nemo illo ea?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.355409"], ["updated_at", "2020-04-23 17:20:05.355409"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Distinctio nesciunt numquam sint?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.357363"], ["updated_at", "2020-04-23 17:20:05.357363"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Assumenda quam aut animi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.359958"], ["updated_at", "2020-04-23 17:20:05.359958"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et repudiandae architecto officiis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.361893"], ["updated_at", "2020-04-23 17:20:05.361893"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut autem est dignissimos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.363970"], ["updated_at", "2020-04-23 17:20:05.363970"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Occaecati soluta blanditiis cum?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.366653"], ["updated_at", "2020-04-23 17:20:05.366653"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Consequuntur assumenda quos est?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.369171"], ["updated_at", "2020-04-23 17:20:05.369171"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Omnis explicabo aliquam recusandae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.371331"], ["updated_at", "2020-04-23 17:20:05.371331"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Mollitia sint excepturi similique?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.373525"], ["updated_at", "2020-04-23 17:20:05.373525"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Minus officia cumque neque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.375836"], ["updated_at", "2020-04-23 17:20:05.375836"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Perferendis placeat numquam cupiditate?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.378493"], ["updated_at", "2020-04-23 17:20:05.378493"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Repudiandae in excepturi culpa?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.380921"], ["updated_at", "2020-04-23 17:20:05.380921"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "In autem dicta omnis?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.382894"], ["updated_at", "2020-04-23 17:20:05.382894"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 0], ["LIMIT", 1]]
+Completed 404 Not Found in 4ms (Views: 0.7ms | ActiveRecord: 0.3ms | Allocations: 568)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Quibusdam mollitia placeat unde."], ["created_at", "2020-04-23 17:20:05.404005"], ["updated_at", "2020-04-23 17:20:05.404005"], ["created_by", "9935425069"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Sequi aspernatur velit dignissimos?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.411739"], ["updated_at", "2020-04-23 17:20:05.411739"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cumque deserunt sed dolor?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.414179"], ["updated_at", "2020-04-23 17:20:05.414179"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officia aperiam veritatis temporibus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.416661"], ["updated_at", "2020-04-23 17:20:05.416661"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo accusantium culpa atque?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.419045"], ["updated_at", "2020-04-23 17:20:05.419045"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut quis saepe sunt?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.420898"], ["updated_at", "2020-04-23 17:20:05.420898"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "A modi molestiae delectus?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.422529"], ["updated_at", "2020-04-23 17:20:05.422529"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Cumque aut magni repudiandae?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.424169"], ["updated_at", "2020-04-23 17:20:05.424169"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quas nisi aliquid ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.426296"], ["updated_at", "2020-04-23 17:20:05.426296"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ut accusamus sit voluptates?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.430385"], ["updated_at", "2020-04-23 17:20:05.430385"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Voluptates consequatur architecto amet?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.433173"], ["updated_at", "2020-04-23 17:20:05.433173"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quaerat nulla omnis voluptatem?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.435455"], ["updated_at", "2020-04-23 17:20:05.435455"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut perferendis corrupti animi?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.437504"], ["updated_at", "2020-04-23 17:20:05.437504"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Et omnis numquam repellat?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.439115"], ["updated_at", "2020-04-23 17:20:05.439115"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Ducimus eius qui tempora?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.440679"], ["updated_at", "2020-04-23 17:20:05.440679"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Corrupti ut qui voluptas?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.442228"], ["updated_at", "2020-04-23 17:20:05.442228"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Officia ratione voluptas quo?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.443723"], ["updated_at", "2020-04-23 17:20:05.443723"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Tempora aspernatur qui ut?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.445442"], ["updated_at", "2020-04-23 17:20:05.445442"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Asperiores perferendis possimus quia?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.448992"], ["updated_at", "2020-04-23 17:20:05.448992"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Quo tenetur hic labore?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.451823"], ["updated_at", "2020-04-23 17:20:05.451823"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Aut velit quia tenetur?"], ["meet_id", 1], ["created_at", "2020-04-23 17:20:05.453764"], ["updated_at", "2020-04-23 17:20:05.453764"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetingsController#destroy as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ?[0m [["meet_id", 1], ["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Destroy (0.1ms)[0m [1m[31mDELETE FROM "meetings" WHERE "meetings"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 711)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Rerum fugiat doloremque dolor."], ["created_at", "2020-04-23 17:20:05.473317"], ["updated_at", "2020-04-23 17:20:05.473317"], ["created_by", "8230791038"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Voluptates atque et voluptatibus."], ["created_at", "2020-04-23 17:20:05.478338"], ["updated_at", "2020-04-23 17:20:05.478338"], ["created_by", "9608812058"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Similique ipsum molestiae nihil."], ["created_at", "2020-04-23 17:20:05.481421"], ["updated_at", "2020-04-23 17:20:05.481421"], ["created_by", "4468657585"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Unde dolores atque est."], ["created_at", "2020-04-23 17:20:05.485258"], ["updated_at", "2020-04-23 17:20:05.485258"], ["created_by", "5903813852"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Est nam cumque necessitatibus."], ["created_at", "2020-04-23 17:20:05.490508"], ["updated_at", "2020-04-23 17:20:05.490508"], ["created_by", "4341133651"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Adipisci unde eos consequatur."], ["created_at", "2020-04-23 17:20:05.494189"], ["updated_at", "2020-04-23 17:20:05.494189"], ["created_by", "4881059897"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Perferendis et nostrum laudantium."], ["created_at", "2020-04-23 17:20:05.498412"], ["updated_at", "2020-04-23 17:20:05.498412"], ["created_by", "2574826325"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Architecto nesciunt corporis quo."], ["created_at", "2020-04-23 17:20:05.502311"], ["updated_at", "2020-04-23 17:20:05.502311"], ["created_by", "2307789345"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Eligendi asperiores occaecati aliquam."], ["created_at", "2020-04-23 17:20:05.507681"], ["updated_at", "2020-04-23 17:20:05.507681"], ["created_by", "3863799807"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "at"], ["description", "Rerum sit et ipsam."], ["created_at", "2020-04-23 17:20:05.514838"], ["updated_at", "2020-04-23 17:20:05.514838"], ["created_by", "5121226376"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2378)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Ut eligendi doloremque doloribus."], ["created_at", "2020-04-23 17:20:05.536873"], ["updated_at", "2020-04-23 17:20:05.536873"], ["created_by", "2722289867"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Voluptatem ut praesentium sed."], ["created_at", "2020-04-23 17:20:05.543266"], ["updated_at", "2020-04-23 17:20:05.543266"], ["created_by", "1873456529"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Consectetur dolores error in."], ["created_at", "2020-04-23 17:20:05.546424"], ["updated_at", "2020-04-23 17:20:05.546424"], ["created_by", "2058406679"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Voluptatem asperiores tenetur aut."], ["created_at", "2020-04-23 17:20:05.551998"], ["updated_at", "2020-04-23 17:20:05.551998"], ["created_by", "5303847847"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Autem ut nihil corporis."], ["created_at", "2020-04-23 17:20:05.555674"], ["updated_at", "2020-04-23 17:20:05.555674"], ["created_by", "4470308842"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Non ea est consequatur."], ["created_at", "2020-04-23 17:20:05.559877"], ["updated_at", "2020-04-23 17:20:05.559877"], ["created_by", "6422464068"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Vitae non rem rerum."], ["created_at", "2020-04-23 17:20:05.563225"], ["updated_at", "2020-04-23 17:20:05.563225"], ["created_by", "5410647215"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Praesentium in accusantium ea."], ["created_at", "2020-04-23 17:20:05.566348"], ["updated_at", "2020-04-23 17:20:05.566348"], ["created_by", "1859828569"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Consectetur molestiae vero et."], ["created_at", "2020-04-23 17:20:05.572484"], ["updated_at", "2020-04-23 17:20:05.572484"], ["created_by", "6175627883"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Molestiae nulla quia officiis."], ["created_at", "2020-04-23 17:20:05.577271"], ["updated_at", "2020-04-23 17:20:05.577271"], ["created_by", "2961135721"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2317)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Velit enim quas quia."], ["created_at", "2020-04-23 17:20:05.598605"], ["updated_at", "2020-04-23 17:20:05.598605"], ["created_by", "6081019707"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Et temporibus a error."], ["created_at", "2020-04-23 17:20:05.604111"], ["updated_at", "2020-04-23 17:20:05.604111"], ["created_by", "9494111458"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "iure"], ["description", "Ullam saepe quia cupiditate."], ["created_at", "2020-04-23 17:20:05.608071"], ["updated_at", "2020-04-23 17:20:05.608071"], ["created_by", "6598149541"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Maiores asperiores suscipit quam."], ["created_at", "2020-04-23 17:20:05.613648"], ["updated_at", "2020-04-23 17:20:05.613648"], ["created_by", "2627123201"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Et placeat nesciunt vel."], ["created_at", "2020-04-23 17:20:05.617632"], ["updated_at", "2020-04-23 17:20:05.617632"], ["created_by", "4922439086"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Ea molestias aut exercitationem."], ["created_at", "2020-04-23 17:20:05.621606"], ["updated_at", "2020-04-23 17:20:05.621606"], ["created_by", "6974765631"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Quo numquam eum omnis."], ["created_at", "2020-04-23 17:20:05.625276"], ["updated_at", "2020-04-23 17:20:05.625276"], ["created_by", "4106218791"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Fugiat voluptatem qui omnis."], ["created_at", "2020-04-23 17:20:05.629691"], ["updated_at", "2020-04-23 17:20:05.629691"], ["created_by", "3491742253"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Sit est placeat id."], ["created_at", "2020-04-23 17:20:05.634173"], ["updated_at", "2020-04-23 17:20:05.634173"], ["created_by", "6629417428"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Omnis ut esse molestiae."], ["created_at", "2020-04-23 17:20:05.639095"], ["updated_at", "2020-04-23 17:20:05.639095"], ["created_by", "6936396437"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 407)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (10.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Id inventore qui voluptas."], ["created_at", "2020-04-23 17:20:05.659638"], ["updated_at", "2020-04-23 17:20:05.659638"], ["created_by", "3275489606"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Et similique qui maiores."], ["created_at", "2020-04-23 17:20:05.664849"], ["updated_at", "2020-04-23 17:20:05.664849"], ["created_by", "7799386861"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Voluptatem facere temporibus in."], ["created_at", "2020-04-23 17:20:05.668973"], ["updated_at", "2020-04-23 17:20:05.668973"], ["created_by", "3893764329"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "provident"], ["description", "Qui occaecati repudiandae nulla."], ["created_at", "2020-04-23 17:20:05.673864"], ["updated_at", "2020-04-23 17:20:05.673864"], ["created_by", "1977504281"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Sit esse possimus et."], ["created_at", "2020-04-23 17:20:05.677151"], ["updated_at", "2020-04-23 17:20:05.677151"], ["created_by", "7050796534"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Harum sed dolorum exercitationem."], ["created_at", "2020-04-23 17:20:05.680079"], ["updated_at", "2020-04-23 17:20:05.680079"], ["created_by", "1057899287"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Tempora culpa odio illum."], ["created_at", "2020-04-23 17:20:05.683170"], ["updated_at", "2020-04-23 17:20:05.683170"], ["created_by", "1354239467"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Ducimus et minus qui."], ["created_at", "2020-04-23 17:20:05.686184"], ["updated_at", "2020-04-23 17:20:05.686184"], ["created_by", "6071919227"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Amet minus accusantium in."], ["created_at", "2020-04-23 17:20:05.690683"], ["updated_at", "2020-04-23 17:20:05.690683"], ["created_by", "1643019424"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "architecto"], ["description", "Itaque illo repellendus ipsa."], ["created_at", "2020-04-23 17:20:05.695070"], ["updated_at", "2020-04-23 17:20:05.695070"], ["created_by", "3384986871"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 408)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Repellendus eum non dolore."], ["created_at", "2020-04-23 17:20:05.710719"], ["updated_at", "2020-04-23 17:20:05.710719"], ["created_by", "1159529008"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Fugit et dolore non."], ["created_at", "2020-04-23 17:20:05.716640"], ["updated_at", "2020-04-23 17:20:05.716640"], ["created_by", "7907931124"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Praesentium consequatur ut aliquam."], ["created_at", "2020-04-23 17:20:05.720076"], ["updated_at", "2020-04-23 17:20:05.720076"], ["created_by", "8228307718"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Et enim suscipit non."], ["created_at", "2020-04-23 17:20:05.723255"], ["updated_at", "2020-04-23 17:20:05.723255"], ["created_by", "3343162702"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Non ut illo temporibus."], ["created_at", "2020-04-23 17:20:05.725986"], ["updated_at", "2020-04-23 17:20:05.725986"], ["created_by", "5074910426"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Praesentium vero vel laudantium."], ["created_at", "2020-04-23 17:20:05.728764"], ["updated_at", "2020-04-23 17:20:05.728764"], ["created_by", "5730528694"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Sapiente provident dolorum soluta."], ["created_at", "2020-04-23 17:20:05.731857"], ["updated_at", "2020-04-23 17:20:05.731857"], ["created_by", "5056156556"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Ad cupiditate quis dolore."], ["created_at", "2020-04-23 17:20:05.735217"], ["updated_at", "2020-04-23 17:20:05.735217"], ["created_by", "7435310644"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Accusamus ab esse dolores."], ["created_at", "2020-04-23 17:20:05.738830"], ["updated_at", "2020-04-23 17:20:05.738830"], ["created_by", "8844212246"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Facilis quo quas consequatur."], ["created_at", "2020-04-23 17:20:05.742797"], ["updated_at", "2020-04-23 17:20:05.742797"], ["created_by", "2147472295"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Quod voluptatibus sed saepe."], ["created_at", "2020-04-23 17:20:05.757229"], ["updated_at", "2020-04-23 17:20:05.757229"], ["created_by", "1935202546"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Dolorum eius optio et."], ["created_at", "2020-04-23 17:20:05.762888"], ["updated_at", "2020-04-23 17:20:05.762888"], ["created_by", "2641022633"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Veniam maxime provident ipsa."], ["created_at", "2020-04-23 17:20:05.766614"], ["updated_at", "2020-04-23 17:20:05.766614"], ["created_by", "5578344124"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Cum omnis voluptate facilis."], ["created_at", "2020-04-23 17:20:05.769998"], ["updated_at", "2020-04-23 17:20:05.769998"], ["created_by", "7626493645"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "iure"], ["description", "Deserunt consequatur qui vel."], ["created_at", "2020-04-23 17:20:05.773470"], ["updated_at", "2020-04-23 17:20:05.773470"], ["created_by", "6754231931"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Eaque ut et soluta."], ["created_at", "2020-04-23 17:20:05.776728"], ["updated_at", "2020-04-23 17:20:05.776728"], ["created_by", "6367877653"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Culpa beatae deleniti cupiditate."], ["created_at", "2020-04-23 17:20:05.780003"], ["updated_at", "2020-04-23 17:20:05.780003"], ["created_by", "9427071956"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Mollitia aspernatur beatae voluptas."], ["created_at", "2020-04-23 17:20:05.783535"], ["updated_at", "2020-04-23 17:20:05.783535"], ["created_by", "9743725825"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Non cumque tenetur magni."], ["created_at", "2020-04-23 17:20:05.786770"], ["updated_at", "2020-04-23 17:20:05.786770"], ["created_by", "9443069235"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Quibusdam rerum voluptatem dolore."], ["created_at", "2020-04-23 17:20:05.790961"], ["updated_at", "2020-04-23 17:20:05.790961"], ["created_by", "5120220508"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 214)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Non aut rerum fugiat."], ["created_at", "2020-04-23 17:20:05.806568"], ["updated_at", "2020-04-23 17:20:05.806568"], ["created_by", "7430826104"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Nihil in repellat tempore."], ["created_at", "2020-04-23 17:20:05.812321"], ["updated_at", "2020-04-23 17:20:05.812321"], ["created_by", "7959907588"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Labore fuga aliquid nam."], ["created_at", "2020-04-23 17:20:05.816273"], ["updated_at", "2020-04-23 17:20:05.816273"], ["created_by", "5917812365"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Facere impedit vero placeat."], ["created_at", "2020-04-23 17:20:05.819329"], ["updated_at", "2020-04-23 17:20:05.819329"], ["created_by", "7800930435"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "beatae"], ["description", "Natus est culpa et."], ["created_at", "2020-04-23 17:20:05.823426"], ["updated_at", "2020-04-23 17:20:05.823426"], ["created_by", "4814661654"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Placeat itaque odit dolorem."], ["created_at", "2020-04-23 17:20:05.826787"], ["updated_at", "2020-04-23 17:20:05.826787"], ["created_by", "4920493111"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Facere illo architecto et."], ["created_at", "2020-04-23 17:20:05.830560"], ["updated_at", "2020-04-23 17:20:05.830560"], ["created_by", "7377390690"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "tempora"], ["description", "Dolorem ipsum repudiandae dignissimos."], ["created_at", "2020-04-23 17:20:05.834290"], ["updated_at", "2020-04-23 17:20:05.834290"], ["created_by", "9404922783"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Quidem perspiciatis ducimus cupiditate."], ["created_at", "2020-04-23 17:20:05.838720"], ["updated_at", "2020-04-23 17:20:05.838720"], ["created_by", "9197282747"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Omnis magnam quia soluta."], ["created_at", "2020-04-23 17:20:05.843708"], ["updated_at", "2020-04-23 17:20:05.843708"], ["created_by", "3178972780"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 17:20:05.847970"], ["updated_at", "2020-04-23 17:20:05.847970"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 5ms (Views: 0.9ms | ActiveRecord: 1.0ms | Allocations: 740)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Quis itaque illum quos."], ["created_at", "2020-04-23 17:20:05.864939"], ["updated_at", "2020-04-23 17:20:05.864939"], ["created_by", "5554540014"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Explicabo est quia consequuntur."], ["created_at", "2020-04-23 17:20:05.871130"], ["updated_at", "2020-04-23 17:20:05.871130"], ["created_by", "5284373440"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Aut quam magnam et."], ["created_at", "2020-04-23 17:20:05.876663"], ["updated_at", "2020-04-23 17:20:05.876663"], ["created_by", "3537743864"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "nemo"], ["description", "Molestiae molestias explicabo atque."], ["created_at", "2020-04-23 17:20:05.880112"], ["updated_at", "2020-04-23 17:20:05.880112"], ["created_by", "1384209090"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Quisquam minima rem est."], ["created_at", "2020-04-23 17:20:05.883509"], ["updated_at", "2020-04-23 17:20:05.883509"], ["created_by", "9480775365"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Odio est et impedit."], ["created_at", "2020-04-23 17:20:05.886768"], ["updated_at", "2020-04-23 17:20:05.886768"], ["created_by", "5657436314"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "magni"], ["description", "Id quia sunt quas."], ["created_at", "2020-04-23 17:20:05.890234"], ["updated_at", "2020-04-23 17:20:05.890234"], ["created_by", "1506911463"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Maxime sit est dignissimos."], ["created_at", "2020-04-23 17:20:05.894927"], ["updated_at", "2020-04-23 17:20:05.894927"], ["created_by", "6539647161"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Quia omnis et deleniti."], ["created_at", "2020-04-23 17:20:05.898400"], ["updated_at", "2020-04-23 17:20:05.898400"], ["created_by", "9049953438"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Dicta illo laudantium cupiditate."], ["created_at", "2020-04-23 17:20:05.901933"], ["updated_at", "2020-04-23 17:20:05.901933"], ["created_by", "8763280571"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:20:05 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["created_at", "2020-04-23 17:20:05.904696"], ["updated_at", "2020-04-23 17:20:05.904696"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 201 Created in 13ms (Views: 10.7ms | ActiveRecord: 0.3ms | Allocations: 739)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Natus accusamus doloremque dolores."], ["created_at", "2020-04-23 17:20:05.966043"], ["updated_at", "2020-04-23 17:20:05.966043"], ["created_by", "9271465371"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Qui est quia provident."], ["created_at", "2020-04-23 17:20:05.972946"], ["updated_at", "2020-04-23 17:20:05.972946"], ["created_by", "2294374726"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "architecto"], ["description", "Alias quia ex et."], ["created_at", "2020-04-23 17:20:05.980563"], ["updated_at", "2020-04-23 17:20:05.980563"], ["created_by", "4992730838"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Veritatis repudiandae sint mollitia."], ["created_at", "2020-04-23 17:20:05.984220"], ["updated_at", "2020-04-23 17:20:05.984220"], ["created_by", "6106600653"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Quae tempore impedit ut."], ["created_at", "2020-04-23 17:20:05.988105"], ["updated_at", "2020-04-23 17:20:05.988105"], ["created_by", "3799187159"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Eos repudiandae optio velit."], ["created_at", "2020-04-23 17:20:05.995263"], ["updated_at", "2020-04-23 17:20:05.995263"], ["created_by", "9671353331"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Quaerat quidem unde asperiores."], ["created_at", "2020-04-23 17:20:06.000368"], ["updated_at", "2020-04-23 17:20:06.000368"], ["created_by", "4263394469"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Qui consequatur sed eum."], ["created_at", "2020-04-23 17:20:06.003622"], ["updated_at", "2020-04-23 17:20:06.003622"], ["created_by", "6053465173"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Vero eaque qui debitis."], ["created_at", "2020-04-23 17:20:06.006959"], ["updated_at", "2020-04-23 17:20:06.006959"], ["created_by", "6732842467"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "minus"], ["description", "Maxime ad delectus voluptate."], ["created_at", "2020-04-23 17:20:06.011916"], ["updated_at", "2020-04-23 17:20:06.011916"], ["created_by", "8691693309"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:20:06 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 854)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Aspernatur ut voluptates blanditiis."], ["created_at", "2020-04-23 17:20:06.030570"], ["updated_at", "2020-04-23 17:20:06.030570"], ["created_by", "3590835120"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Iusto qui voluptatem nesciunt."], ["created_at", "2020-04-23 17:20:06.037869"], ["updated_at", "2020-04-23 17:20:06.037869"], ["created_by", "7937012187"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "amet"], ["description", "Quo repudiandae dolore expedita."], ["created_at", "2020-04-23 17:20:06.041448"], ["updated_at", "2020-04-23 17:20:06.041448"], ["created_by", "6874375652"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Atque facilis ut accusamus."], ["created_at", "2020-04-23 17:20:06.044576"], ["updated_at", "2020-04-23 17:20:06.044576"], ["created_by", "2470514905"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Eos et quis laudantium."], ["created_at", "2020-04-23 17:20:06.047901"], ["updated_at", "2020-04-23 17:20:06.047901"], ["created_by", "4316527482"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Quia distinctio blanditiis autem."], ["created_at", "2020-04-23 17:20:06.053032"], ["updated_at", "2020-04-23 17:20:06.053032"], ["created_by", "7299466209"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Odio deserunt ducimus debitis."], ["created_at", "2020-04-23 17:20:06.057042"], ["updated_at", "2020-04-23 17:20:06.057042"], ["created_by", "1760547649"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Qui totam atque dignissimos."], ["created_at", "2020-04-23 17:20:06.060623"], ["updated_at", "2020-04-23 17:20:06.060623"], ["created_by", "8967641852"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Necessitatibus esse tempore omnis."], ["created_at", "2020-04-23 17:20:06.064097"], ["updated_at", "2020-04-23 17:20:06.064097"], ["created_by", "5920328363"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Molestiae ipsum ad ullam."], ["created_at", "2020-04-23 17:20:06.068451"], ["updated_at", "2020-04-23 17:20:06.068451"], ["created_by", "8266175681"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-04-23 14:20:06 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 854)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (19.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Dolor voluptas saepe tenetur."], ["created_at", "2020-04-23 17:20:06.098629"], ["updated_at", "2020-04-23 17:20:06.098629"], ["created_by", "3370875642"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Totam maiores aliquid rerum."], ["created_at", "2020-04-23 17:20:06.103185"], ["updated_at", "2020-04-23 17:20:06.103185"], ["created_by", "1521346261"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Quisquam numquam aliquam omnis."], ["created_at", "2020-04-23 17:20:06.106541"], ["updated_at", "2020-04-23 17:20:06.106541"], ["created_by", "1884615889"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Et et rerum nihil."], ["created_at", "2020-04-23 17:20:06.109482"], ["updated_at", "2020-04-23 17:20:06.109482"], ["created_by", "2704658883"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Voluptatibus fugit cum quasi."], ["created_at", "2020-04-23 17:20:06.113454"], ["updated_at", "2020-04-23 17:20:06.113454"], ["created_by", "1982631097"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Sint est et perspiciatis."], ["created_at", "2020-04-23 17:20:06.117222"], ["updated_at", "2020-04-23 17:20:06.117222"], ["created_by", "1936483640"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Quis repudiandae suscipit aut."], ["created_at", "2020-04-23 17:20:06.120079"], ["updated_at", "2020-04-23 17:20:06.120079"], ["created_by", "5290896438"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Laborum in facere delectus."], ["created_at", "2020-04-23 17:20:06.122889"], ["updated_at", "2020-04-23 17:20:06.122889"], ["created_by", "1820923203"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Suscipit ut aut voluptatibus."], ["created_at", "2020-04-23 17:20:06.125724"], ["updated_at", "2020-04-23 17:20:06.125724"], ["created_by", "9550312596"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Nostrum eveniet at autem."], ["created_at", "2020-04-23 17:20:06.129889"], ["updated_at", "2020-04-23 17:20:06.129889"], ["created_by", "3600171120"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 14:20:06 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 17:20:06.133699"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 729)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Ex inventore molestiae eum."], ["created_at", "2020-04-23 17:20:06.147146"], ["updated_at", "2020-04-23 17:20:06.147146"], ["created_by", "3882432902"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "totam"], ["description", "Amet sint nihil illo."], ["created_at", "2020-04-23 17:20:06.152743"], ["updated_at", "2020-04-23 17:20:06.152743"], ["created_by", "2372286411"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Ipsam assumenda eligendi sequi."], ["created_at", "2020-04-23 17:20:06.158105"], ["updated_at", "2020-04-23 17:20:06.158105"], ["created_by", "9181383141"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Dolorem qui doloremque omnis."], ["created_at", "2020-04-23 17:20:06.161310"], ["updated_at", "2020-04-23 17:20:06.161310"], ["created_by", "6111354423"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Eligendi nisi ut repellat."], ["created_at", "2020-04-23 17:20:06.164269"], ["updated_at", "2020-04-23 17:20:06.164269"], ["created_by", "5701487943"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Deleniti ut consequatur necessitatibus."], ["created_at", "2020-04-23 17:20:06.167263"], ["updated_at", "2020-04-23 17:20:06.167263"], ["created_by", "9768311939"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Aliquam eius et distinctio."], ["created_at", "2020-04-23 17:20:06.170080"], ["updated_at", "2020-04-23 17:20:06.170080"], ["created_by", "1815637457"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Reprehenderit pariatur assumenda dolor."], ["created_at", "2020-04-23 17:20:06.172937"], ["updated_at", "2020-04-23 17:20:06.172937"], ["created_by", "4467615751"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Molestias voluptates aliquam aperiam."], ["created_at", "2020-04-23 17:20:06.175704"], ["updated_at", "2020-04-23 17:20:06.175704"], ["created_by", "5410437873"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Ut est omnis qui."], ["created_at", "2020-04-23 17:20:06.179191"], ["updated_at", "2020-04-23 17:20:06.179191"], ["created_by", "8168685137"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 14:20:06 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-04-23 17:20:06.182157"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 710)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Amet magni vel et."], ["created_at", "2020-04-23 17:20:06.195799"], ["updated_at", "2020-04-23 17:20:06.195799"], ["created_by", "6896832823"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Cum quam aut nostrum."], ["created_at", "2020-04-23 17:20:06.200717"], ["updated_at", "2020-04-23 17:20:06.200717"], ["created_by", "4429426034"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Architecto repellendus officiis voluptatem."], ["created_at", "2020-04-23 17:20:06.204217"], ["updated_at", "2020-04-23 17:20:06.204217"], ["created_by", "5122061956"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "optio"], ["description", "Fugit sunt voluptate minus."], ["created_at", "2020-04-23 17:20:06.207690"], ["updated_at", "2020-04-23 17:20:06.207690"], ["created_by", "3402401935"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Molestiae animi voluptate et."], ["created_at", "2020-04-23 17:20:06.211079"], ["updated_at", "2020-04-23 17:20:06.211079"], ["created_by", "6825223511"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "tempore"], ["description", "Aut quis laboriosam aut."], ["created_at", "2020-04-23 17:20:06.214617"], ["updated_at", "2020-04-23 17:20:06.214617"], ["created_by", "1524287503"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Quisquam nam earum aut."], ["created_at", "2020-04-23 17:20:06.218224"], ["updated_at", "2020-04-23 17:20:06.218224"], ["created_by", "4639256442"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Praesentium adipisci quae ea."], ["created_at", "2020-04-23 17:20:06.221115"], ["updated_at", "2020-04-23 17:20:06.221115"], ["created_by", "8165722016"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Cum magni quia sed."], ["created_at", "2020-04-23 17:20:06.223930"], ["updated_at", "2020-04-23 17:20:06.223930"], ["created_by", "6231710353"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Ut praesentium illum unde."], ["created_at", "2020-04-23 17:20:06.227563"], ["updated_at", "2020-04-23 17:20:06.227563"], ["created_by", "7042794040"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-04-23 14:20:06 -0300
+Processing by MeetsController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mMeet Destroy (0.2ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 600)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (123.5ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (77.8ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (86.1ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (110.1ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (83.0ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (101.9ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (133.8ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (100.6ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (101.0ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (137.6ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (1.0ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (92.1ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (118.6ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (3.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (132.6ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (142.6ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (100.3ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (10.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (3.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to AddPictureToUsers (20200423203320)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (5.1ms)[0m [1m[35mALTER TABLE "users" ADD "picture" varchar[0m
+ [1m[36mprimary::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200423203320"]]
+ [1m[35m (124.6ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (3.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (99.6ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (93.7ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (141.8ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Mr. Lamonica Abshire"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NPBFjyWeQf78PfPI20rLV.HXmlsTsQjmlJEltNEfkEuxFY3LVLvvO"], ["created_at", "2020-04-23 20:39:38.566644"], ["updated_at", "2020-04-23 20:39:38.566644"]]
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Krystal Orn PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mqxGYkDNL.xkYVaSAluIGeINL1q8xESvnET9vLXYotujlIfx7hXVe"], ["created_at", "2020-04-23 20:39:38.590368"], ["updated_at", "2020-04-23 20:39:38.590368"]]
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (14.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (233.0ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (107.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (91.8ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Richard Yost"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uxsRbRwbyETGVBEg66PM6.SXh.T7jNcamR1BivWEwJv95nrehrn9K"], ["created_at", "2020-04-23 22:54:26.317655"], ["updated_at", "2020-04-23 22:54:26.317655"]]
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "foo"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Hong Botsford"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$THKg00U8P5XLsdY3kRkmhOjQXObRKZaoNnnhsEB.BI0fnL1KwjHi."], ["created_at", "2020-04-23 22:54:26.415057"], ["updated_at", "2020-04-23 22:54:26.415057"]]
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 5], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Rick Predovic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gQlMYArFG3h.cCqvfIeIwOxt.S/f/JfRJenQ5GKxByA9mNBlnvyD2"], ["created_at", "2020-04-23 22:54:26.466082"], ["updated_at", "2020-04-23 22:54:26.466082"]]
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (25.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to CreateJoinTableUsesMeets (20200424174528)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (1.9ms)[0m [1m[35mCREATE TABLE "user_meets" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "meet_id" integer NOT NULL, CONSTRAINT "fk_rails_ca2fe53ab5"
+FOREIGN KEY ("user_id")
+ REFERENCES "users" ("id")
+, CONSTRAINT "fk_rails_0be9f44818"
+FOREIGN KEY ("meet_id")
+ REFERENCES "meets" ("id")
+)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_user_meets_on_user_id" ON "user_meets" ("user_id")[0m
+ [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "index_user_meets_on_meet_id" ON "user_meets" ("meet_id")[0m
+ [1m[36mprimary::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200424174528"]]
+ [1m[35m (115.8ms)[0m [1m[36mcommit transaction[0m
+Migrating to CreateJoinTableUsesMeetings (20200424174751)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "user_meetings" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "meeting_id" integer NOT NULL, CONSTRAINT "fk_rails_50ba97f5a7"
+FOREIGN KEY ("user_id")
+ REFERENCES "users" ("id")
+, CONSTRAINT "fk_rails_34b593a2f0"
+FOREIGN KEY ("meeting_id")
+ REFERENCES "meetings" ("id")
+)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_user_meetings_on_user_id" ON "user_meetings" ("user_id")[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_user_meetings_on_meeting_id" ON "user_meetings" ("meeting_id")[0m
+ [1m[36mprimary::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200424174751"]]
+ [1m[35m (80.0ms)[0m [1m[36mcommit transaction[0m
+Migrating to ChangeDurationFromMeets (20200428213607)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TEMPORARY TABLE "ameets" ("id" integer NOT NULL PRIMARY KEY, "title" varchar DEFAULT NULL, "description" text DEFAULT NULL, "frequency" varchar DEFAULT NULL, "duration" float DEFAULT NULL, "day" varchar DEFAULT NULL, "members" integer DEFAULT NULL, "max_members" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "created_by" varchar DEFAULT NULL)[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "ameets" ("id","title","description","frequency","duration","day","members","max_members","created_at","updated_at","created_by")
+ SELECT "id","title","description","frequency","duration","day","members","max_members","created_at","updated_at","created_by" FROM "meets"[0m
+ [1m[35m (1.1ms)[0m [1m[35mDROP TABLE "meets"[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "meets" ("id" integer NOT NULL PRIMARY KEY, "title" varchar DEFAULT NULL, "description" text DEFAULT NULL, "frequency" varchar DEFAULT NULL, "duration" float DEFAULT NULL, "day" varchar DEFAULT NULL, "members" integer DEFAULT NULL, "max_members" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "created_by" varchar DEFAULT NULL)[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "meets" ("id","title","description","frequency","duration","day","members","max_members","created_at","updated_at","created_by")
+ SELECT "id","title","description","frequency","duration","day","members","max_members","created_at","updated_at","created_by" FROM "ameets"[0m
+ [1m[35m (0.1ms)[0m [1m[35mDROP TABLE "ameets"[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[36mprimary::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200428213607"]]
+ [1m[35m (70.1ms)[0m [1m[36mcommit transaction[0m
+Migrating to CreateConversations (20200504200000)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "conversations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
+ [1m[36mprimary::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200504200000"]]
+ [1m[35m (69.8ms)[0m [1m[36mcommit transaction[0m
+Migrating to CreateMessagems (20200504200114)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (1.4ms)[0m [1m[35mCREATE TABLE "messagems" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar, "conversation_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_7ac659aa92"
+FOREIGN KEY ("conversation_id")
+ REFERENCES "conversations" ("id")
+)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "index_messagems_on_conversation_id" ON "messagems" ("conversation_id")[0m
+ [1m[36mprimary::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200504200114"]]
+ [1m[35m (100.8ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (86.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.9ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (90.4ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (90.7ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (110.2ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (81.1ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (103.0ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (99.8ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "foo"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (5.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (72.7ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (79.0ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (108.5ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (1.0ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.8ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (108.0ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (73.5ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (106.6ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (88.7ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (94.4ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (117.0ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (91.9ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (118.4ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (83.1ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (73.3ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (72.0ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (125.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (79.7ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (108.8ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (102.1ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (91.0ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (81.7ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (106.5ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (5.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (173.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (146.1ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.9ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (300.1ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (322.2ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (97.3ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (88.0ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (96.3ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (128.1ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (142.3ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (310.2ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (188.3ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (94.9ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (75.6ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (123.7ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (99.8ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (79.4ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (117.5ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (137.3ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (128.4ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (1.0ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (130.5ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (137.3ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (81.8ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (74.5ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (73.4ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (79.3ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (63.9ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (96.9ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (72.2ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Veniam sit sapiente nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:37.391847"], ["updated_at", "2020-05-05 16:17:37.391847"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptas possimus est dolorem?"], ["description", "Omnis fugit eum et."], ["date", "2020-05-06 16:17:37.420529"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.507411"], ["updated_at", "2020-05-05 16:17:37.507411"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Cupiditate omnis necessitatibus placeat?"], ["description", "Tempore ut sint est."], ["date", "2020-05-06 16:17:37.509199"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.509981"], ["updated_at", "2020-05-05 16:17:37.509981"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Enim odit voluptas dolores?"], ["description", "Corrupti numquam molestias maiores."], ["date", "2020-05-06 16:17:37.511311"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.512006"], ["updated_at", "2020-05-05 16:17:37.512006"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Totam recusandae alias eos?"], ["description", "Quidem tempore eligendi laboriosam."], ["date", "2020-05-06 16:17:37.513331"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.514116"], ["updated_at", "2020-05-05 16:17:37.514116"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Distinctio sit atque consequuntur?"], ["description", "Quis tempora odio autem."], ["date", "2020-05-06 16:17:37.515376"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.516078"], ["updated_at", "2020-05-05 16:17:37.516078"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Possimus ut et necessitatibus?"], ["description", "Culpa quisquam est illum."], ["date", "2020-05-06 16:17:37.517242"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.518013"], ["updated_at", "2020-05-05 16:17:37.518013"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quae deserunt magni harum?"], ["description", "Rerum odit nihil iste."], ["date", "2020-05-06 16:17:37.519220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.519958"], ["updated_at", "2020-05-05 16:17:37.519958"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Enim eum neque expedita?"], ["description", "Sunt ut excepturi omnis."], ["date", "2020-05-06 16:17:37.522306"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.524803"], ["updated_at", "2020-05-05 16:17:37.524803"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Officia nihil sed animi?"], ["description", "Fuga hic nihil voluptatem."], ["date", "2020-05-06 16:17:37.527956"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.529532"], ["updated_at", "2020-05-05 16:17:37.529532"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Perferendis qui veniam debitis?"], ["description", "Ipsum eius ea aperiam."], ["date", "2020-05-06 16:17:37.533054"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.534553"], ["updated_at", "2020-05-05 16:17:37.534553"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Qui ut fugit rem?"], ["description", "Est ducimus repellendus cumque."], ["date", "2020-05-06 16:17:37.537020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.538506"], ["updated_at", "2020-05-05 16:17:37.538506"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Repellendus fugit dolores numquam?"], ["description", "Ut dolores aliquid sapiente."], ["date", "2020-05-06 16:17:37.541274"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.543128"], ["updated_at", "2020-05-05 16:17:37.543128"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Veniam magni vel sit?"], ["description", "Molestiae id non repellat."], ["date", "2020-05-06 16:17:37.545752"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.547372"], ["updated_at", "2020-05-05 16:17:37.547372"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Numquam hic adipisci vel?"], ["description", "Optio libero officiis maxime."], ["date", "2020-05-06 16:17:37.549831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.551240"], ["updated_at", "2020-05-05 16:17:37.551240"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et debitis rerum voluptatem?"], ["description", "Molestiae ab et in."], ["date", "2020-05-06 16:17:37.552634"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.553360"], ["updated_at", "2020-05-05 16:17:37.553360"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sunt voluptas ullam aliquam?"], ["description", "In saepe iste tempora."], ["date", "2020-05-06 16:17:37.554665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.555364"], ["updated_at", "2020-05-05 16:17:37.555364"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatem quia quia ut?"], ["description", "Quis atque et sit."], ["date", "2020-05-06 16:17:37.556657"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.557352"], ["updated_at", "2020-05-05 16:17:37.557352"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "At eius maiores odit?"], ["description", "Est et natus aut."], ["date", "2020-05-06 16:17:37.558571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.559272"], ["updated_at", "2020-05-05 16:17:37.559272"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Velit exercitationem id eos?"], ["description", "Debitis quos incidunt odit."], ["date", "2020-05-06 16:17:37.560608"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.561432"], ["updated_at", "2020-05-05 16:17:37.561432"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et a necessitatibus dolorem?"], ["description", "Ex magnam debitis culpa."], ["date", "2020-05-06 16:17:37.562833"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.563627"], ["updated_at", "2020-05-05 16:17:37.563627"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 13:17:37 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.11ms)
+Completed 422 Unprocessable Entity in 14ms (Views: 10.2ms | ActiveRecord: 0.0ms | Allocations: 1148)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Veritatis voluptas saepe eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:37.726148"], ["updated_at", "2020-05-05 16:17:37.726148"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Temporibus id ea omnis?"], ["description", "Veritatis et possimus distinctio."], ["date", "2020-05-06 16:17:37.729213"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.730272"], ["updated_at", "2020-05-05 16:17:37.730272"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quia fugiat sint ullam?"], ["description", "Facilis rerum cupiditate aut."], ["date", "2020-05-06 16:17:37.731903"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.732766"], ["updated_at", "2020-05-05 16:17:37.732766"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dolores eum blanditiis impedit?"], ["description", "Dolore omnis accusamus reiciendis."], ["date", "2020-05-06 16:17:37.734193"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.735035"], ["updated_at", "2020-05-05 16:17:37.735035"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Alias saepe quo fugit?"], ["description", "Ut accusantium eligendi deleniti."], ["date", "2020-05-06 16:17:37.736385"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.737196"], ["updated_at", "2020-05-05 16:17:37.737196"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et at autem delectus?"], ["description", "Sint autem odio molestiae."], ["date", "2020-05-06 16:17:37.738457"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.739286"], ["updated_at", "2020-05-05 16:17:37.739286"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Iste occaecati deleniti impedit?"], ["description", "Ea provident quaerat dignissimos."], ["date", "2020-05-06 16:17:37.740505"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.741241"], ["updated_at", "2020-05-05 16:17:37.741241"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et et ut eveniet?"], ["description", "Facilis cumque cum quasi."], ["date", "2020-05-06 16:17:37.742594"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.743344"], ["updated_at", "2020-05-05 16:17:37.743344"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Qui ratione alias aut?"], ["description", "Magnam reprehenderit similique cum."], ["date", "2020-05-06 16:17:37.744546"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.745271"], ["updated_at", "2020-05-05 16:17:37.745271"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Maxime nisi qui quibusdam?"], ["description", "Necessitatibus nulla sunt repudiandae."], ["date", "2020-05-06 16:17:37.746602"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.747348"], ["updated_at", "2020-05-05 16:17:37.747348"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Eum natus ut rerum?"], ["description", "Nisi voluptatem maiores ipsa."], ["date", "2020-05-06 16:17:37.749424"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.750212"], ["updated_at", "2020-05-05 16:17:37.750212"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et est quam perspiciatis?"], ["description", "Necessitatibus officia incidunt fugiat."], ["date", "2020-05-06 16:17:37.751556"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.752311"], ["updated_at", "2020-05-05 16:17:37.752311"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Facilis voluptate hic corporis?"], ["description", "Ab architecto doloremque nihil."], ["date", "2020-05-06 16:17:37.753559"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.754259"], ["updated_at", "2020-05-05 16:17:37.754259"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "In consequatur quidem perferendis?"], ["description", "Dolores quia voluptatem eaque."], ["date", "2020-05-06 16:17:37.755450"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.756180"], ["updated_at", "2020-05-05 16:17:37.756180"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Libero id et sapiente?"], ["description", "Est voluptatem illo possimus."], ["date", "2020-05-06 16:17:37.757643"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.758393"], ["updated_at", "2020-05-05 16:17:37.758393"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Laboriosam est voluptatem quia?"], ["description", "Alias debitis et a."], ["date", "2020-05-06 16:17:37.759652"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.760359"], ["updated_at", "2020-05-05 16:17:37.760359"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Est explicabo quis amet?"], ["description", "Et et dolore soluta."], ["date", "2020-05-06 16:17:37.761653"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.762445"], ["updated_at", "2020-05-05 16:17:37.762445"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Hic consequuntur cum ab?"], ["description", "Rerum dolores modi facere."], ["date", "2020-05-06 16:17:37.763691"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.764394"], ["updated_at", "2020-05-05 16:17:37.764394"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Consequatur accusantium laudantium explicabo?"], ["description", "Sit illum neque ipsa."], ["date", "2020-05-06 16:17:37.765635"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.766380"], ["updated_at", "2020-05-05 16:17:37.766380"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Fuga ullam soluta voluptas?"], ["description", "Sint minima aspernatur qui."], ["date", "2020-05-06 16:17:37.767569"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.768306"], ["updated_at", "2020-05-05 16:17:37.768306"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Iusto mollitia quia tenetur?"], ["description", "Quae ex sit maxime."], ["date", "2020-05-06 16:17:37.769446"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.770154"], ["updated_at", "2020-05-05 16:17:37.770154"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 13:17:37 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.11ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Ipsum eius eligendi omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:37.809090"], ["updated_at", "2020-05-05 16:17:37.809090"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sit nesciunt sint quod?"], ["description", "Qui quos sunt nemo."], ["date", "2020-05-06 16:17:37.811843"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.812833"], ["updated_at", "2020-05-05 16:17:37.812833"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Enim accusantium fuga ipsam?"], ["description", "Quod qui illo deserunt."], ["date", "2020-05-06 16:17:37.814242"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.815096"], ["updated_at", "2020-05-05 16:17:37.815096"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Nihil itaque eos nobis?"], ["description", "Perferendis eligendi beatae voluptates."], ["date", "2020-05-06 16:17:37.816223"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.816957"], ["updated_at", "2020-05-05 16:17:37.816957"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quo rerum quis delectus?"], ["description", "Ipsum architecto debitis nulla."], ["date", "2020-05-06 16:17:37.818166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.818874"], ["updated_at", "2020-05-05 16:17:37.818874"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Aliquam dolor exercitationem sit?"], ["description", "Ipsum quidem sed dolor."], ["date", "2020-05-06 16:17:37.819969"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.820693"], ["updated_at", "2020-05-05 16:17:37.820693"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Magni suscipit voluptatum beatae?"], ["description", "Expedita aliquam consequuntur repudiandae."], ["date", "2020-05-06 16:17:37.822205"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.823621"], ["updated_at", "2020-05-05 16:17:37.823621"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Officiis deleniti sunt voluptatum?"], ["description", "Et consequatur voluptatum perspiciatis."], ["date", "2020-05-06 16:17:37.826567"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.827595"], ["updated_at", "2020-05-05 16:17:37.827595"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Veritatis quos earum atque?"], ["description", "Beatae dicta omnis ducimus."], ["date", "2020-05-06 16:17:37.828984"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.829710"], ["updated_at", "2020-05-05 16:17:37.829710"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Reiciendis illo modi quia?"], ["description", "Nobis soluta porro id."], ["date", "2020-05-06 16:17:37.830903"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.831854"], ["updated_at", "2020-05-05 16:17:37.831854"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Alias occaecati enim rem?"], ["description", "Consequatur totam omnis cum."], ["date", "2020-05-06 16:17:37.833841"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.834667"], ["updated_at", "2020-05-05 16:17:37.834667"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Consequatur et et facilis?"], ["description", "Provident pariatur quaerat vero."], ["date", "2020-05-06 16:17:37.836019"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.836830"], ["updated_at", "2020-05-05 16:17:37.836830"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Similique quo in eaque?"], ["description", "Eius ipsa et mollitia."], ["date", "2020-05-06 16:17:37.838054"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.838742"], ["updated_at", "2020-05-05 16:17:37.838742"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ut fugit temporibus praesentium?"], ["description", "Rerum quibusdam animi non."], ["date", "2020-05-06 16:17:37.839938"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.840651"], ["updated_at", "2020-05-05 16:17:37.840651"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Fuga rerum laboriosam modi?"], ["description", "Occaecati unde possimus quia."], ["date", "2020-05-06 16:17:37.841867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.842646"], ["updated_at", "2020-05-05 16:17:37.842646"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quia quo et temporibus?"], ["description", "Magnam veniam sed id."], ["date", "2020-05-06 16:17:37.844552"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.845501"], ["updated_at", "2020-05-05 16:17:37.845501"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Exercitationem quis sunt dignissimos?"], ["description", "Tempore porro eius quae."], ["date", "2020-05-06 16:17:37.846832"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.847529"], ["updated_at", "2020-05-05 16:17:37.847529"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sunt illo placeat dolores?"], ["description", "Error quam quo cupiditate."], ["date", "2020-05-06 16:17:37.848663"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.849392"], ["updated_at", "2020-05-05 16:17:37.849392"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Eligendi quas impedit consequatur?"], ["description", "Mollitia fugit voluptas qui."], ["date", "2020-05-06 16:17:37.850517"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.851229"], ["updated_at", "2020-05-05 16:17:37.851229"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatem omnis rerum corporis?"], ["description", "Dolores ipsa itaque aut."], ["date", "2020-05-06 16:17:37.852458"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.853222"], ["updated_at", "2020-05-05 16:17:37.853222"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dolores esse libero dolore?"], ["description", "Voluptatem ipsam officia fugit."], ["date", "2020-05-06 16:17:37.854383"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.855128"], ["updated_at", "2020-05-05 16:17:37.855128"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 13:17:37 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.11ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (24.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Quisquam quo qui est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:37.886611"], ["updated_at", "2020-05-05 16:17:37.886611"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Natus dolor sed excepturi?"], ["description", "Qui repellat est dolorum."], ["date", "2020-05-06 16:17:37.889620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.890591"], ["updated_at", "2020-05-05 16:17:37.890591"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatem velit voluptas reiciendis?"], ["description", "Esse consequatur sequi ut."], ["date", "2020-05-06 16:17:37.892058"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.892781"], ["updated_at", "2020-05-05 16:17:37.892781"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Officia velit quia et?"], ["description", "Debitis iste fuga maiores."], ["date", "2020-05-06 16:17:37.894765"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.895551"], ["updated_at", "2020-05-05 16:17:37.895551"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Deserunt et sit ut?"], ["description", "Illum accusantium ipsa blanditiis."], ["date", "2020-05-06 16:17:37.896879"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.897662"], ["updated_at", "2020-05-05 16:17:37.897662"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quos provident animi eligendi?"], ["description", "Assumenda debitis accusantium dolor."], ["date", "2020-05-06 16:17:37.898848"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.899543"], ["updated_at", "2020-05-05 16:17:37.899543"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Itaque sit sequi autem?"], ["description", "Provident vitae eveniet perspiciatis."], ["date", "2020-05-06 16:17:37.900770"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.901518"], ["updated_at", "2020-05-05 16:17:37.901518"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Iure sint temporibus laborum?"], ["description", "Magnam aut cupiditate laudantium."], ["date", "2020-05-06 16:17:37.902765"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.903497"], ["updated_at", "2020-05-05 16:17:37.903497"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quidem non in sit?"], ["description", "Sunt voluptas recusandae dignissimos."], ["date", "2020-05-06 16:17:37.904814"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.905583"], ["updated_at", "2020-05-05 16:17:37.905583"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Repellendus repudiandae voluptas quidem?"], ["description", "Voluptatum aperiam quod quasi."], ["date", "2020-05-06 16:17:37.907052"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.907832"], ["updated_at", "2020-05-05 16:17:37.907832"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Debitis numquam et aut?"], ["description", "Beatae reprehenderit velit repellendus."], ["date", "2020-05-06 16:17:37.909747"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.910516"], ["updated_at", "2020-05-05 16:17:37.910516"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quia quibusdam molestiae illo?"], ["description", "Ut autem voluptas minima."], ["date", "2020-05-06 16:17:37.912718"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.914540"], ["updated_at", "2020-05-05 16:17:37.914540"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Explicabo ut quasi eligendi?"], ["description", "Ut veritatis quisquam est."], ["date", "2020-05-06 16:17:37.917540"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.919411"], ["updated_at", "2020-05-05 16:17:37.919411"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ut nobis provident reiciendis?"], ["description", "At repellat vitae sit."], ["date", "2020-05-06 16:17:37.948831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.950131"], ["updated_at", "2020-05-05 16:17:37.950131"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ad corrupti qui natus?"], ["description", "Dolores alias velit tempore."], ["date", "2020-05-06 16:17:37.951684"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.952437"], ["updated_at", "2020-05-05 16:17:37.952437"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Eos eos voluptatem ex?"], ["description", "Voluptates cupiditate est quis."], ["date", "2020-05-06 16:17:37.953584"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.954278"], ["updated_at", "2020-05-05 16:17:37.954278"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Excepturi libero dolorem aliquam?"], ["description", "Autem aut aliquam non."], ["date", "2020-05-06 16:17:37.955478"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.956181"], ["updated_at", "2020-05-05 16:17:37.956181"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et tenetur aut id?"], ["description", "Repellat eos quis eaque."], ["date", "2020-05-06 16:17:37.957438"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.958137"], ["updated_at", "2020-05-05 16:17:37.958137"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Repudiandae assumenda odio vero?"], ["description", "Totam quae soluta et."], ["date", "2020-05-06 16:17:37.959289"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.959954"], ["updated_at", "2020-05-05 16:17:37.959954"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dignissimos tenetur ut vel?"], ["description", "Dolor adipisci dolores commodi."], ["date", "2020-05-06 16:17:37.961299"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.962023"], ["updated_at", "2020-05-05 16:17:37.962023"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Error sed quae qui?"], ["description", "At modi et maxime."], ["date", "2020-05-06 16:17:37.963391"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:37.964138"], ["updated_at", "2020-05-05 16:17:37.964138"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 13:17:37 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (24.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Dolor molestiae et porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.022282"], ["updated_at", "2020-05-05 16:17:38.022282"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Fugiat et ut voluptatum?"], ["description", "Hic officiis omnis vel."], ["date", "2020-05-06 16:17:38.027534"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.029611"], ["updated_at", "2020-05-05 16:17:38.029611"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Magnam harum dolor laboriosam?"], ["description", "Neque ut impedit magni."], ["date", "2020-05-06 16:17:38.032613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.034230"], ["updated_at", "2020-05-05 16:17:38.034230"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Possimus et quis veritatis?"], ["description", "Quo asperiores itaque quasi."], ["date", "2020-05-06 16:17:38.036721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.038370"], ["updated_at", "2020-05-05 16:17:38.038370"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Autem molestias error voluptas?"], ["description", "Qui aut ipsa molestiae."], ["date", "2020-05-06 16:17:38.040769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.042388"], ["updated_at", "2020-05-05 16:17:38.042388"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et architecto quae ipsam?"], ["description", "Nostrum aut occaecati amet."], ["date", "2020-05-06 16:17:38.044940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.046549"], ["updated_at", "2020-05-05 16:17:38.046549"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatibus voluptatem consequuntur labore?"], ["description", "Voluptatem sint qui eos."], ["date", "2020-05-06 16:17:38.049097"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.051000"], ["updated_at", "2020-05-05 16:17:38.051000"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Aperiam corporis fuga consequatur?"], ["description", "Deserunt enim voluptas asperiores."], ["date", "2020-05-06 16:17:38.053787"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.055447"], ["updated_at", "2020-05-05 16:17:38.055447"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Officia et a autem?"], ["description", "Voluptates ut laborum dolores."], ["date", "2020-05-06 16:17:38.057954"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.059530"], ["updated_at", "2020-05-05 16:17:38.059530"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.9ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Molestias soluta debitis ab?"], ["description", "Ea quod commodi doloribus."], ["date", "2020-05-06 16:17:38.061966"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.063037"], ["updated_at", "2020-05-05 16:17:38.063037"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Accusantium quis natus occaecati?"], ["description", "A aut accusantium et."], ["date", "2020-05-06 16:17:38.065733"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.066908"], ["updated_at", "2020-05-05 16:17:38.066908"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dolor blanditiis aut exercitationem?"], ["description", "Sint eum sed ut."], ["date", "2020-05-06 16:17:38.068745"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.069720"], ["updated_at", "2020-05-05 16:17:38.069720"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Enim facilis enim saepe?"], ["description", "Eos voluptatibus eum incidunt."], ["date", "2020-05-06 16:17:38.071355"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.072414"], ["updated_at", "2020-05-05 16:17:38.072414"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Molestiae id ut in?"], ["description", "Est officia ut debitis."], ["date", "2020-05-06 16:17:38.073986"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.074942"], ["updated_at", "2020-05-05 16:17:38.074942"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Tenetur et quos nostrum?"], ["description", "Qui aut cumque commodi."], ["date", "2020-05-06 16:17:38.076528"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.077474"], ["updated_at", "2020-05-05 16:17:38.077474"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et debitis et quis?"], ["description", "Architecto rerum sunt laudantium."], ["date", "2020-05-06 16:17:38.079147"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.080116"], ["updated_at", "2020-05-05 16:17:38.080116"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Consequatur modi repellat autem?"], ["description", "Facilis inventore et numquam."], ["date", "2020-05-06 16:17:38.081750"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.082738"], ["updated_at", "2020-05-05 16:17:38.082738"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Possimus quisquam amet deserunt?"], ["description", "Mollitia excepturi et dolorum."], ["date", "2020-05-06 16:17:38.084620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.085844"], ["updated_at", "2020-05-05 16:17:38.085844"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Beatae quas architecto iusto?"], ["description", "Ullam laboriosam a voluptate."], ["date", "2020-05-06 16:17:38.087636"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.088647"], ["updated_at", "2020-05-05 16:17:38.088647"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et et quo sit?"], ["description", "Est assumenda dolorem in."], ["date", "2020-05-06 16:17:38.090276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.091291"], ["updated_at", "2020-05-05 16:17:38.091291"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et est earum porro?"], ["description", "Consectetur possimus placeat magnam."], ["date", "2020-05-06 16:17:38.092467"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.093150"], ["updated_at", "2020-05-05 16:17:38.093150"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Et et quidem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.106105"], ["updated_at", "2020-05-05 16:17:38.106105"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Commodi et aspernatur autem?"], ["description", "Non et eius perferendis."], ["date", "2020-05-06 16:17:38.109222"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.110217"], ["updated_at", "2020-05-05 16:17:38.110217"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et tempore ut expedita?"], ["description", "Soluta ut voluptate ex."], ["date", "2020-05-06 16:17:38.111650"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.112346"], ["updated_at", "2020-05-05 16:17:38.112346"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Nam ex illo exercitationem?"], ["description", "Fugiat ab cumque asperiores."], ["date", "2020-05-06 16:17:38.113459"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.114174"], ["updated_at", "2020-05-05 16:17:38.114174"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Minima ab temporibus dolorem?"], ["description", "Libero eos et aut."], ["date", "2020-05-06 16:17:38.115395"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.116116"], ["updated_at", "2020-05-05 16:17:38.116116"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatem qui at sit?"], ["description", "Nam esse iste non."], ["date", "2020-05-06 16:17:38.117221"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.117891"], ["updated_at", "2020-05-05 16:17:38.117891"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et amet earum ab?"], ["description", "Sint ipsam cupiditate deleniti."], ["date", "2020-05-06 16:17:38.119006"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.119677"], ["updated_at", "2020-05-05 16:17:38.119677"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Non omnis numquam reprehenderit?"], ["description", "Occaecati ipsa tempora et."], ["date", "2020-05-06 16:17:38.120807"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.121493"], ["updated_at", "2020-05-05 16:17:38.121493"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Cupiditate necessitatibus tempore rem?"], ["description", "Facere ipsa aspernatur nesciunt."], ["date", "2020-05-06 16:17:38.122625"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.123311"], ["updated_at", "2020-05-05 16:17:38.123311"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quo maxime fugit qui?"], ["description", "Voluptas aperiam eos dolorum."], ["date", "2020-05-06 16:17:38.124640"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.125786"], ["updated_at", "2020-05-05 16:17:38.125786"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Similique explicabo reprehenderit doloremque?"], ["description", "Laudantium quam vero ut."], ["date", "2020-05-06 16:17:38.127849"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.128741"], ["updated_at", "2020-05-05 16:17:38.128741"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Nesciunt nam quis consectetur?"], ["description", "Iste libero qui perspiciatis."], ["date", "2020-05-06 16:17:38.130052"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.130749"], ["updated_at", "2020-05-05 16:17:38.130749"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Laboriosam voluptas inventore incidunt?"], ["description", "Nobis adipisci expedita ut."], ["date", "2020-05-06 16:17:38.132011"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.132741"], ["updated_at", "2020-05-05 16:17:38.132741"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Aperiam eum dolor corrupti?"], ["description", "Iusto placeat fuga expedita."], ["date", "2020-05-06 16:17:38.133918"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.134601"], ["updated_at", "2020-05-05 16:17:38.134601"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Molestias ut quo nostrum?"], ["description", "Minima quaerat illo impedit."], ["date", "2020-05-06 16:17:38.135789"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.136470"], ["updated_at", "2020-05-05 16:17:38.136470"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatem architecto laborum molestiae?"], ["description", "Ut nemo illo praesentium."], ["date", "2020-05-06 16:17:38.137763"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.138498"], ["updated_at", "2020-05-05 16:17:38.138498"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sint nisi maxime dolorem?"], ["description", "Quis facilis est eum."], ["date", "2020-05-06 16:17:38.139686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.140390"], ["updated_at", "2020-05-05 16:17:38.140390"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quia cupiditate ipsam at?"], ["description", "Ea ipsa esse repellendus."], ["date", "2020-05-06 16:17:38.141565"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.142243"], ["updated_at", "2020-05-05 16:17:38.142243"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Numquam fugit perferendis autem?"], ["description", "Cupiditate nisi sed culpa."], ["date", "2020-05-06 16:17:38.143443"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.144223"], ["updated_at", "2020-05-05 16:17:38.144223"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Nemo asperiores in laboriosam?"], ["description", "Molestias tempora pariatur asperiores."], ["date", "2020-05-06 16:17:38.145562"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.146284"], ["updated_at", "2020-05-05 16:17:38.146284"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sed ea delectus quo?"], ["description", "Voluptate sapiente ratione placeat."], ["date", "2020-05-06 16:17:38.147472"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.148138"], ["updated_at", "2020-05-05 16:17:38.148138"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (24.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Dolores hic sequi ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.178610"], ["updated_at", "2020-05-05 16:17:38.178610"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ut magnam est eum?"], ["description", "Cupiditate qui qui dolor."], ["date", "2020-05-06 16:17:38.181196"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.182172"], ["updated_at", "2020-05-05 16:17:38.182172"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptates fuga ab id?"], ["description", "Voluptatem amet quaerat laborum."], ["date", "2020-05-06 16:17:38.183572"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.184307"], ["updated_at", "2020-05-05 16:17:38.184307"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quas ullam aspernatur sit?"], ["description", "Autem vero quia soluta."], ["date", "2020-05-06 16:17:38.185590"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.186368"], ["updated_at", "2020-05-05 16:17:38.186368"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Magnam est dignissimos similique?"], ["description", "Dolor sequi similique repellat."], ["date", "2020-05-06 16:17:38.187532"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.188214"], ["updated_at", "2020-05-05 16:17:38.188214"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Recusandae sed officia non?"], ["description", "Aut praesentium deserunt soluta."], ["date", "2020-05-06 16:17:38.189414"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.190140"], ["updated_at", "2020-05-05 16:17:38.190140"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Omnis excepturi eligendi voluptatem?"], ["description", "Et qui dicta dolores."], ["date", "2020-05-06 16:17:38.191337"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.192020"], ["updated_at", "2020-05-05 16:17:38.192020"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Qui ratione aut enim?"], ["description", "Repudiandae qui ea perferendis."], ["date", "2020-05-06 16:17:38.193145"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.193815"], ["updated_at", "2020-05-05 16:17:38.193815"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Saepe aliquam totam quis?"], ["description", "Expedita officiis omnis cum."], ["date", "2020-05-06 16:17:38.194865"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.195520"], ["updated_at", "2020-05-05 16:17:38.195520"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Eaque cumque et et?"], ["description", "Aut quas qui porro."], ["date", "2020-05-06 16:17:38.196595"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.197261"], ["updated_at", "2020-05-05 16:17:38.197261"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ut accusantium ipsa et?"], ["description", "Doloremque nulla ratione numquam."], ["date", "2020-05-06 16:17:38.199080"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.199817"], ["updated_at", "2020-05-05 16:17:38.199817"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Consequatur laudantium blanditiis minus?"], ["description", "Nam omnis ab maiores."], ["date", "2020-05-06 16:17:38.201021"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.201768"], ["updated_at", "2020-05-05 16:17:38.201768"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Nemo est libero quia?"], ["description", "Magni expedita nihil omnis."], ["date", "2020-05-06 16:17:38.202896"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.203590"], ["updated_at", "2020-05-05 16:17:38.203590"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sed autem asperiores explicabo?"], ["description", "Corporis quod quos qui."], ["date", "2020-05-06 16:17:38.204779"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.205470"], ["updated_at", "2020-05-05 16:17:38.205470"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Blanditiis ut consequatur vitae?"], ["description", "Provident delectus aut qui."], ["date", "2020-05-06 16:17:38.206671"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.207357"], ["updated_at", "2020-05-05 16:17:38.207357"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Debitis necessitatibus numquam facilis?"], ["description", "Possimus consequuntur voluptatem cum."], ["date", "2020-05-06 16:17:38.208563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.209239"], ["updated_at", "2020-05-05 16:17:38.209239"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quasi est rem iure?"], ["description", "Quas ducimus error et."], ["date", "2020-05-06 16:17:38.210362"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.211024"], ["updated_at", "2020-05-05 16:17:38.211024"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ipsum quibusdam illo quaerat?"], ["description", "Sed sapiente voluptatem qui."], ["date", "2020-05-06 16:17:38.212177"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.212876"], ["updated_at", "2020-05-05 16:17:38.212876"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Provident aperiam ea minima?"], ["description", "Nesciunt iure corporis quod."], ["date", "2020-05-06 16:17:38.214218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.214941"], ["updated_at", "2020-05-05 16:17:38.214941"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatibus perferendis laborum ea?"], ["description", "Eos est deleniti enim."], ["date", "2020-05-06 16:17:38.216213"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.216876"], ["updated_at", "2020-05-05 16:17:38.216876"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sapiente sint id reprehenderit?"], ["description", "Numquam fuga assumenda soluta."], ["date", "2020-05-06 16:17:38.218004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.218653"], ["updated_at", "2020-05-05 16:17:38.218653"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Molestias nemo vel et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.233207"], ["updated_at", "2020-05-05 16:17:38.233207"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Libero voluptatem non eum?"], ["description", "Fugiat vero nemo vel."], ["date", "2020-05-06 16:17:38.236135"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.237170"], ["updated_at", "2020-05-05 16:17:38.237170"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ducimus modi ut fuga?"], ["description", "Quibusdam consectetur praesentium enim."], ["date", "2020-05-06 16:17:38.238822"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.239692"], ["updated_at", "2020-05-05 16:17:38.239692"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptate architecto blanditiis consequuntur?"], ["description", "Aliquid dolorem in vero."], ["date", "2020-05-06 16:17:38.240979"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.241750"], ["updated_at", "2020-05-05 16:17:38.241750"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Eum et aperiam nisi?"], ["description", "Soluta rem accusamus nostrum."], ["date", "2020-05-06 16:17:38.242943"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.243648"], ["updated_at", "2020-05-05 16:17:38.243648"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Magnam consequuntur est qui?"], ["description", "Magnam blanditiis aut et."], ["date", "2020-05-06 16:17:38.244795"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.245563"], ["updated_at", "2020-05-05 16:17:38.245563"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Veritatis sed saepe ratione?"], ["description", "Ut consequatur illum numquam."], ["date", "2020-05-06 16:17:38.246771"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.247555"], ["updated_at", "2020-05-05 16:17:38.247555"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sequi consequatur qui molestiae?"], ["description", "Dolor dolorem reprehenderit magni."], ["date", "2020-05-06 16:17:38.248789"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.249600"], ["updated_at", "2020-05-05 16:17:38.249600"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Vel hic totam et?"], ["description", "Et quia nihil esse."], ["date", "2020-05-06 16:17:38.250837"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.251673"], ["updated_at", "2020-05-05 16:17:38.251673"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Itaque dolores inventore sapiente?"], ["description", "Iusto aliquid mollitia autem."], ["date", "2020-05-06 16:17:38.252928"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.253755"], ["updated_at", "2020-05-05 16:17:38.253755"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Fugiat velit quia quia?"], ["description", "Accusamus sed unde hic."], ["date", "2020-05-06 16:17:38.255731"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.256674"], ["updated_at", "2020-05-05 16:17:38.256674"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Nisi aut est saepe?"], ["description", "Molestias quia harum at."], ["date", "2020-05-06 16:17:38.258152"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.259114"], ["updated_at", "2020-05-05 16:17:38.259114"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Architecto repudiandae libero repellendus?"], ["description", "Omnis et est tempore."], ["date", "2020-05-06 16:17:38.260659"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.261771"], ["updated_at", "2020-05-05 16:17:38.261771"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Nostrum rerum aut impedit?"], ["description", "Sed illo qui quod."], ["date", "2020-05-06 16:17:38.263210"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.264134"], ["updated_at", "2020-05-05 16:17:38.264134"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Illum dolore odit reprehenderit?"], ["description", "Sit ratione possimus quis."], ["date", "2020-05-06 16:17:38.265568"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.266496"], ["updated_at", "2020-05-05 16:17:38.266496"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ut eos cupiditate praesentium?"], ["description", "Nesciunt et ducimus voluptates."], ["date", "2020-05-06 16:17:38.267971"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.268830"], ["updated_at", "2020-05-05 16:17:38.268830"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Reiciendis quibusdam est voluptas?"], ["description", "Rem doloremque omnis in."], ["date", "2020-05-06 16:17:38.270085"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.271046"], ["updated_at", "2020-05-05 16:17:38.271046"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Reiciendis mollitia et consequatur?"], ["description", "Recusandae minima fuga ut."], ["date", "2020-05-06 16:17:38.272351"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.273200"], ["updated_at", "2020-05-05 16:17:38.273200"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et libero doloremque asperiores?"], ["description", "Fuga voluptatibus at exercitationem."], ["date", "2020-05-06 16:17:38.274407"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.275178"], ["updated_at", "2020-05-05 16:17:38.275178"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Eos autem voluptas quos?"], ["description", "Enim voluptatum vel officiis."], ["date", "2020-05-06 16:17:38.276347"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.277080"], ["updated_at", "2020-05-05 16:17:38.277080"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et quod velit qui?"], ["description", "Est et eum maiores."], ["date", "2020-05-06 16:17:38.278189"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.279003"], ["updated_at", "2020-05-05 16:17:38.279003"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetingsController#show as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"0"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Quia ut laudantium rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.307936"], ["updated_at", "2020-05-05 16:17:38.307936"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Corporis est enim id?"], ["description", "Et impedit tempora veniam."], ["date", "2020-05-06 16:17:38.310864"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.311857"], ["updated_at", "2020-05-05 16:17:38.311857"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sunt molestiae quidem soluta?"], ["description", "Fugit laborum ut dignissimos."], ["date", "2020-05-06 16:17:38.313280"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.314100"], ["updated_at", "2020-05-05 16:17:38.314100"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Fugiat rerum quia debitis?"], ["description", "Autem sint et fugiat."], ["date", "2020-05-06 16:17:38.315459"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.316288"], ["updated_at", "2020-05-05 16:17:38.316288"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "In culpa recusandae harum?"], ["description", "Sequi voluptatibus excepturi vel."], ["date", "2020-05-06 16:17:38.317543"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.318330"], ["updated_at", "2020-05-05 16:17:38.318330"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Accusamus et repellendus distinctio?"], ["description", "Possimus eum eos soluta."], ["date", "2020-05-06 16:17:38.319524"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.320213"], ["updated_at", "2020-05-05 16:17:38.320213"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Omnis dolorum quibusdam voluptate?"], ["description", "Velit ipsum odit fugiat."], ["date", "2020-05-06 16:17:38.321355"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.322025"], ["updated_at", "2020-05-05 16:17:38.322025"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quia sunt in ut?"], ["description", "Est nobis eum praesentium."], ["date", "2020-05-06 16:17:38.323200"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.323867"], ["updated_at", "2020-05-05 16:17:38.323867"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Aut in dolorem rerum?"], ["description", "Error consequatur cum et."], ["date", "2020-05-06 16:17:38.325002"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.325992"], ["updated_at", "2020-05-05 16:17:38.325992"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Rerum et consectetur sequi?"], ["description", "Eum eum earum dignissimos."], ["date", "2020-05-06 16:17:38.327370"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.328082"], ["updated_at", "2020-05-05 16:17:38.328082"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et deserunt ut eligendi?"], ["description", "Vel maiores deleniti libero."], ["date", "2020-05-06 16:17:38.329889"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.330634"], ["updated_at", "2020-05-05 16:17:38.330634"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dolore voluptatem voluptatem sit?"], ["description", "Dolores nisi voluptas architecto."], ["date", "2020-05-06 16:17:38.331858"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.332546"], ["updated_at", "2020-05-05 16:17:38.332546"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Iusto ipsa suscipit dolores?"], ["description", "Quod qui nemo eum."], ["date", "2020-05-06 16:17:38.333768"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.334453"], ["updated_at", "2020-05-05 16:17:38.334453"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Nihil adipisci voluptatem iste?"], ["description", "Perferendis distinctio blanditiis aliquam."], ["date", "2020-05-06 16:17:38.335589"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.336376"], ["updated_at", "2020-05-05 16:17:38.336376"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Consequatur ratione aut cumque?"], ["description", "Ratione aut sapiente sit."], ["date", "2020-05-06 16:17:38.337608"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.338287"], ["updated_at", "2020-05-05 16:17:38.338287"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et quis cumque molestiae?"], ["description", "Eligendi et aut at."], ["date", "2020-05-06 16:17:38.339502"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.340205"], ["updated_at", "2020-05-05 16:17:38.340205"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Inventore autem fugiat minus?"], ["description", "Accusantium ut iure doloremque."], ["date", "2020-05-06 16:17:38.341291"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.341954"], ["updated_at", "2020-05-05 16:17:38.341954"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Cumque nihil quo voluptatibus?"], ["description", "Deserunt occaecati numquam deleniti."], ["date", "2020-05-06 16:17:38.343086"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.343893"], ["updated_at", "2020-05-05 16:17:38.343893"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Nesciunt libero nobis rerum?"], ["description", "Ea et voluptatum dolorem."], ["date", "2020-05-06 16:17:38.345127"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.345861"], ["updated_at", "2020-05-05 16:17:38.345861"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "In aut qui voluptatem?"], ["description", "Excepturi molestiae nam nihil."], ["date", "2020-05-06 16:17:38.347120"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.347798"], ["updated_at", "2020-05-05 16:17:38.347798"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et et in itaque?"], ["description", "Dolore suscipit nostrum tempore."], ["date", "2020-05-06 16:17:38.349008"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.349700"], ["updated_at", "2020-05-05 16:17:38.349700"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"title"=>"Visit Narnia", "description"=>"false", "meet_id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Id eum id recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.438558"], ["updated_at", "2020-05-05 16:17:38.438558"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Eius aperiam officiis perspiciatis?"], ["description", "Asperiores iusto consequatur recusandae."], ["date", "2020-05-06 16:17:38.442787"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.444339"], ["updated_at", "2020-05-05 16:17:38.444339"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Molestias rerum aut eius?"], ["description", "Consequatur ducimus quo qui."], ["date", "2020-05-06 16:17:38.447101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.448511"], ["updated_at", "2020-05-05 16:17:38.448511"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Consequatur exercitationem eligendi est?"], ["description", "Aspernatur distinctio voluptates aut."], ["date", "2020-05-06 16:17:38.450964"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.455887"], ["updated_at", "2020-05-05 16:17:38.455887"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "In quo sunt autem?"], ["description", "Quam nulla ut et."], ["date", "2020-05-06 16:17:38.457682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.458755"], ["updated_at", "2020-05-05 16:17:38.458755"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Qui molestiae dolorum qui?"], ["description", "Quam aut suscipit voluptate."], ["date", "2020-05-06 16:17:38.460603"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.461807"], ["updated_at", "2020-05-05 16:17:38.461807"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quo illo est voluptatibus?"], ["description", "Quia numquam similique qui."], ["date", "2020-05-06 16:17:38.463427"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.464997"], ["updated_at", "2020-05-05 16:17:38.464997"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quis quos enim ea?"], ["description", "Rem voluptatum consequatur enim."], ["date", "2020-05-06 16:17:38.468745"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.471641"], ["updated_at", "2020-05-05 16:17:38.471641"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Aut natus ipsa occaecati?"], ["description", "Soluta ut beatae commodi."], ["date", "2020-05-06 16:17:38.474566"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.476466"], ["updated_at", "2020-05-05 16:17:38.476466"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (1.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Rerum odit aut est?"], ["description", "Iusto iure eius est."], ["date", "2020-05-06 16:17:38.478260"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.480064"], ["updated_at", "2020-05-05 16:17:38.480064"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Repellendus laudantium quia temporibus?"], ["description", "Deserunt ipsum illum qui."], ["date", "2020-05-06 16:17:38.485182"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.486455"], ["updated_at", "2020-05-05 16:17:38.486455"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Laboriosam aliquid quisquam rem?"], ["description", "Praesentium tenetur quia molestiae."], ["date", "2020-05-06 16:17:38.489433"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.490483"], ["updated_at", "2020-05-05 16:17:38.490483"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Harum ipsam totam voluptas?"], ["description", "Numquam consequatur eos ut."], ["date", "2020-05-06 16:17:38.491752"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.492430"], ["updated_at", "2020-05-05 16:17:38.492430"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Soluta atque ut necessitatibus?"], ["description", "Nihil facilis pariatur eaque."], ["date", "2020-05-06 16:17:38.493490"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.494149"], ["updated_at", "2020-05-05 16:17:38.494149"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quibusdam qui libero rem?"], ["description", "Ullam esse non nobis."], ["date", "2020-05-06 16:17:38.495327"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.496142"], ["updated_at", "2020-05-05 16:17:38.496142"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Veniam totam quia dolore?"], ["description", "Fugit sunt quasi ipsam."], ["date", "2020-05-06 16:17:38.497250"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.497986"], ["updated_at", "2020-05-05 16:17:38.497986"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Omnis rem veritatis qui?"], ["description", "Fugiat et commodi eum."], ["date", "2020-05-06 16:17:38.499127"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.499839"], ["updated_at", "2020-05-05 16:17:38.499839"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Molestiae labore est a?"], ["description", "Voluptatem nemo ut et."], ["date", "2020-05-06 16:17:38.500960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.501703"], ["updated_at", "2020-05-05 16:17:38.501703"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sed asperiores magnam qui?"], ["description", "Qui velit eum nostrum."], ["date", "2020-05-06 16:17:38.502836"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.503517"], ["updated_at", "2020-05-05 16:17:38.503517"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptates libero consequuntur consectetur?"], ["description", "Doloremque illo aperiam pariatur."], ["date", "2020-05-06 16:17:38.504601"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.505279"], ["updated_at", "2020-05-05 16:17:38.505279"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Autem ullam doloribus ducimus?"], ["description", "Non eum quasi eum."], ["date", "2020-05-06 16:17:38.506635"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.508603"], ["updated_at", "2020-05-05 16:17:38.508603"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (13.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Necessitatibus dolores nihil eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.522996"], ["updated_at", "2020-05-05 16:17:38.522996"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Deserunt aut iusto perferendis?"], ["description", "Quis minima exercitationem odio."], ["date", "2020-05-06 16:17:38.537822"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.538861"], ["updated_at", "2020-05-05 16:17:38.538861"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Delectus et rem quae?"], ["description", "Sed fugiat nihil itaque."], ["date", "2020-05-06 16:17:38.540297"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.541055"], ["updated_at", "2020-05-05 16:17:38.541055"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ea est earum nostrum?"], ["description", "Nobis dolores vero non."], ["date", "2020-05-06 16:17:38.542180"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.542865"], ["updated_at", "2020-05-05 16:17:38.542865"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Placeat voluptatem neque nesciunt?"], ["description", "Totam quam sint libero."], ["date", "2020-05-06 16:17:38.543918"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.544607"], ["updated_at", "2020-05-05 16:17:38.544607"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatem eius ad et?"], ["description", "Quaerat et dolores et."], ["date", "2020-05-06 16:17:38.545761"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.546523"], ["updated_at", "2020-05-05 16:17:38.546523"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatum voluptatibus sapiente eos?"], ["description", "Nihil nisi rerum aspernatur."], ["date", "2020-05-06 16:17:38.548539"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.550290"], ["updated_at", "2020-05-05 16:17:38.550290"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ut eligendi et quis?"], ["description", "Quia voluptas vel eaque."], ["date", "2020-05-06 16:17:38.551660"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.552467"], ["updated_at", "2020-05-05 16:17:38.552467"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Amet harum libero tempore?"], ["description", "Esse non qui et."], ["date", "2020-05-06 16:17:38.553525"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.554195"], ["updated_at", "2020-05-05 16:17:38.554195"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Id voluptatem voluptas autem?"], ["description", "Est accusamus reprehenderit aspernatur."], ["date", "2020-05-06 16:17:38.555224"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.555892"], ["updated_at", "2020-05-05 16:17:38.555892"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Praesentium tempora modi harum?"], ["description", "Facere eum debitis et."], ["date", "2020-05-06 16:17:38.557651"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.558445"], ["updated_at", "2020-05-05 16:17:38.558445"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Eveniet doloremque asperiores dolorem?"], ["description", "Nostrum debitis laboriosam id."], ["date", "2020-05-06 16:17:38.559654"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.560347"], ["updated_at", "2020-05-05 16:17:38.560347"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Laborum quia quae aut?"], ["description", "Voluptates architecto voluptatibus ut."], ["date", "2020-05-06 16:17:38.561493"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.562170"], ["updated_at", "2020-05-05 16:17:38.562170"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quo nihil consequatur consectetur?"], ["description", "Dolorem sint ad omnis."], ["date", "2020-05-06 16:17:38.563271"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.563931"], ["updated_at", "2020-05-05 16:17:38.563931"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et non tempore accusantium?"], ["description", "Ea beatae eligendi dolore."], ["date", "2020-05-06 16:17:38.565046"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.565715"], ["updated_at", "2020-05-05 16:17:38.565715"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et quisquam ex ducimus?"], ["description", "Incidunt et laborum dolor."], ["date", "2020-05-06 16:17:38.566825"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.568477"], ["updated_at", "2020-05-05 16:17:38.568477"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Velit officia dolorem quod?"], ["description", "Voluptate quis aut voluptas."], ["date", "2020-05-06 16:17:38.570095"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.571042"], ["updated_at", "2020-05-05 16:17:38.571042"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quibusdam ipsa aut autem?"], ["description", "Ullam vel voluptatem quasi."], ["date", "2020-05-06 16:17:38.572512"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.573373"], ["updated_at", "2020-05-05 16:17:38.573373"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Qui in et reiciendis?"], ["description", "Qui hic omnis nostrum."], ["date", "2020-05-06 16:17:38.574689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.575464"], ["updated_at", "2020-05-05 16:17:38.575464"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Magni est sit eos?"], ["description", "Pariatur perspiciatis fugit omnis."], ["date", "2020-05-06 16:17:38.576689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.577365"], ["updated_at", "2020-05-05 16:17:38.577365"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Totam dolore excepturi nemo?"], ["description", "Nesciunt commodi sint vitae."], ["date", "2020-05-06 16:17:38.578553"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.579236"], ["updated_at", "2020-05-05 16:17:38.579236"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetingsController#create as HTML
+ Parameters: {"meet_id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Explicabo libero omnis ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.592057"], ["updated_at", "2020-05-05 16:17:38.592057"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Consectetur corporis non expedita?"], ["description", "Saepe delectus ea odit."], ["date", "2020-05-06 16:17:38.595344"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.596366"], ["updated_at", "2020-05-05 16:17:38.596366"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Assumenda esse necessitatibus impedit?"], ["description", "Non neque est aut."], ["date", "2020-05-06 16:17:38.597769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.598463"], ["updated_at", "2020-05-05 16:17:38.598463"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sapiente assumenda velit placeat?"], ["description", "Cupiditate occaecati asperiores quis."], ["date", "2020-05-06 16:17:38.599829"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.600516"], ["updated_at", "2020-05-05 16:17:38.600516"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Aut dolorem ea voluptate?"], ["description", "Sint facere vel excepturi."], ["date", "2020-05-06 16:17:38.601576"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.602259"], ["updated_at", "2020-05-05 16:17:38.602259"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Culpa aut et distinctio?"], ["description", "Laboriosam saepe officiis eligendi."], ["date", "2020-05-06 16:17:38.603368"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.604138"], ["updated_at", "2020-05-05 16:17:38.604138"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Enim voluptatum doloribus occaecati?"], ["description", "Facere repellat et sed."], ["date", "2020-05-06 16:17:38.605302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.605984"], ["updated_at", "2020-05-05 16:17:38.605984"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatem adipisci quia repellendus?"], ["description", "Quia voluptatum amet delectus."], ["date", "2020-05-06 16:17:38.607199"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.608852"], ["updated_at", "2020-05-05 16:17:38.608852"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Debitis aut ut incidunt?"], ["description", "Quia in et aut."], ["date", "2020-05-06 16:17:38.610392"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.611755"], ["updated_at", "2020-05-05 16:17:38.611755"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dolore perferendis quae inventore?"], ["description", "Quas aut aut est."], ["date", "2020-05-06 16:17:38.613965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.615287"], ["updated_at", "2020-05-05 16:17:38.615287"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quo voluptatibus est ut?"], ["description", "Magni eaque ad harum."], ["date", "2020-05-06 16:17:38.617554"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.618532"], ["updated_at", "2020-05-05 16:17:38.618532"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Veniam sit explicabo eum?"], ["description", "Quisquam beatae facere unde."], ["date", "2020-05-06 16:17:38.620106"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.621010"], ["updated_at", "2020-05-05 16:17:38.621010"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Libero ratione dicta aut?"], ["description", "Eos nam ipsum dignissimos."], ["date", "2020-05-06 16:17:38.622472"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.623323"], ["updated_at", "2020-05-05 16:17:38.623323"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Doloribus dicta rem est?"], ["description", "Harum fuga aut magni."], ["date", "2020-05-06 16:17:38.624657"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.625505"], ["updated_at", "2020-05-05 16:17:38.625505"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Necessitatibus inventore quia beatae?"], ["description", "Commodi consequatur et est."], ["date", "2020-05-06 16:17:38.627491"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.628985"], ["updated_at", "2020-05-05 16:17:38.628985"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et itaque illum repellat?"], ["description", "At vel nisi numquam."], ["date", "2020-05-06 16:17:38.630782"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.631891"], ["updated_at", "2020-05-05 16:17:38.631891"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Consequatur nobis qui cumque?"], ["description", "Ipsam soluta sapiente dolorem."], ["date", "2020-05-06 16:17:38.633618"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.634691"], ["updated_at", "2020-05-05 16:17:38.634691"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Eaque et cum quia?"], ["description", "Amet nemo veritatis et."], ["date", "2020-05-06 16:17:38.636302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.637441"], ["updated_at", "2020-05-05 16:17:38.637441"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Qui molestiae est explicabo?"], ["description", "Aut consequuntur quis enim."], ["date", "2020-05-06 16:17:38.639740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.641541"], ["updated_at", "2020-05-05 16:17:38.641541"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Possimus placeat illum suscipit?"], ["description", "Qui similique quisquam laudantium."], ["date", "2020-05-06 16:17:38.644008"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.645414"], ["updated_at", "2020-05-05 16:17:38.645414"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Earum ut sit fugiat?"], ["description", "Quis mollitia doloremque laudantium."], ["date", "2020-05-06 16:17:38.647061"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.648871"], ["updated_at", "2020-05-05 16:17:38.648871"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Reiciendis distinctio est provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.664060"], ["updated_at", "2020-05-05 16:17:38.664060"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dolor necessitatibus dignissimos officiis?"], ["description", "Laboriosam unde numquam et."], ["date", "2020-05-06 16:17:38.667637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.669384"], ["updated_at", "2020-05-05 16:17:38.669384"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et nihil est voluptates?"], ["description", "Soluta repellendus et libero."], ["date", "2020-05-06 16:17:38.671520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.672580"], ["updated_at", "2020-05-05 16:17:38.672580"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Amet vitae dolore ea?"], ["description", "Ipsa repellat mollitia aut."], ["date", "2020-05-06 16:17:38.674133"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.675091"], ["updated_at", "2020-05-05 16:17:38.675091"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Laborum praesentium iusto ut?"], ["description", "Qui autem hic unde."], ["date", "2020-05-06 16:17:38.676392"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.677314"], ["updated_at", "2020-05-05 16:17:38.677314"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Accusantium quisquam sed autem?"], ["description", "Enim et nulla non."], ["date", "2020-05-06 16:17:38.678748"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.679655"], ["updated_at", "2020-05-05 16:17:38.679655"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Totam cupiditate ipsum qui?"], ["description", "At nihil quia tenetur."], ["date", "2020-05-06 16:17:38.681005"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.682217"], ["updated_at", "2020-05-05 16:17:38.682217"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Nihil ea rem suscipit?"], ["description", "Cupiditate excepturi repellat et."], ["date", "2020-05-06 16:17:38.683519"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.684398"], ["updated_at", "2020-05-05 16:17:38.684398"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ea enim in maxime?"], ["description", "Hic consequuntur nulla velit."], ["date", "2020-05-06 16:17:38.685593"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.686378"], ["updated_at", "2020-05-05 16:17:38.686378"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Natus nemo aut suscipit?"], ["description", "Minus aut similique asperiores."], ["date", "2020-05-06 16:17:38.687929"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.689128"], ["updated_at", "2020-05-05 16:17:38.689128"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et placeat et et?"], ["description", "Officia quod error consequuntur."], ["date", "2020-05-06 16:17:38.691188"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.692139"], ["updated_at", "2020-05-05 16:17:38.692139"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Libero dicta dolore alias?"], ["description", "Nisi voluptatem nihil libero."], ["date", "2020-05-06 16:17:38.693579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.694534"], ["updated_at", "2020-05-05 16:17:38.694534"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Maiores itaque optio labore?"], ["description", "Error et aut sint."], ["date", "2020-05-06 16:17:38.695945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.696791"], ["updated_at", "2020-05-05 16:17:38.696791"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quae ratione vel molestiae?"], ["description", "Sed cupiditate similique veniam."], ["date", "2020-05-06 16:17:38.697999"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.698779"], ["updated_at", "2020-05-05 16:17:38.698779"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Perferendis nemo nam ab?"], ["description", "Aut aut ea vero."], ["date", "2020-05-06 16:17:38.700903"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.702027"], ["updated_at", "2020-05-05 16:17:38.702027"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Est consequuntur quis natus?"], ["description", "Unde dolorem consequatur autem."], ["date", "2020-05-06 16:17:38.704026"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.705076"], ["updated_at", "2020-05-05 16:17:38.705076"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Tempore dolorem quaerat non?"], ["description", "Voluptatem dolor nemo veniam."], ["date", "2020-05-06 16:17:38.706599"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.707462"], ["updated_at", "2020-05-05 16:17:38.707462"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptas eum sunt quia?"], ["description", "Tempora dolores non qui."], ["date", "2020-05-06 16:17:38.709220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.710902"], ["updated_at", "2020-05-05 16:17:38.710902"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Doloremque sunt rerum ex?"], ["description", "Et consequuntur necessitatibus autem."], ["date", "2020-05-06 16:17:38.712686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.713691"], ["updated_at", "2020-05-05 16:17:38.713691"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et ea sit est?"], ["description", "Nobis occaecati consequuntur impedit."], ["date", "2020-05-06 16:17:38.715056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.715967"], ["updated_at", "2020-05-05 16:17:38.715967"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Delectus id non ut?"], ["description", "Non voluptatem commodi tenetur."], ["date", "2020-05-06 16:17:38.717187"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.732006"], ["updated_at", "2020-05-05 16:17:38.732006"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Non quo error qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.745770"], ["updated_at", "2020-05-05 16:17:38.745770"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Accusantium nesciunt dolorum quae?"], ["description", "Incidunt et debitis illum."], ["date", "2020-05-06 16:17:38.749069"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.751056"], ["updated_at", "2020-05-05 16:17:38.751056"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Fuga numquam sed amet?"], ["description", "Aut hic placeat illo."], ["date", "2020-05-06 16:17:38.753130"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.754142"], ["updated_at", "2020-05-05 16:17:38.754142"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "In ratione voluptas et?"], ["description", "Aut explicabo non et."], ["date", "2020-05-06 16:17:38.755716"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.756758"], ["updated_at", "2020-05-05 16:17:38.756758"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Culpa itaque expedita dolore?"], ["description", "Et vel numquam molestiae."], ["date", "2020-05-06 16:17:38.758173"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.759074"], ["updated_at", "2020-05-05 16:17:38.759074"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "In corrupti odit aut?"], ["description", "Accusamus temporibus consectetur totam."], ["date", "2020-05-06 16:17:38.760266"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.761005"], ["updated_at", "2020-05-05 16:17:38.761005"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Unde nobis illum corrupti?"], ["description", "Asperiores error non nemo."], ["date", "2020-05-06 16:17:38.762092"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.762785"], ["updated_at", "2020-05-05 16:17:38.762785"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ipsum at earum consectetur?"], ["description", "Sunt rerum veniam ut."], ["date", "2020-05-06 16:17:38.763844"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.764523"], ["updated_at", "2020-05-05 16:17:38.764523"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Cum labore maxime consequatur?"], ["description", "Eaque assumenda nobis veritatis."], ["date", "2020-05-06 16:17:38.765563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.766225"], ["updated_at", "2020-05-05 16:17:38.766225"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.9ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Molestiae voluptate deserunt expedita?"], ["description", "Harum ut et voluptas."], ["date", "2020-05-06 16:17:38.767257"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.768008"], ["updated_at", "2020-05-05 16:17:38.768008"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quo inventore iure est?"], ["description", "Earum iusto ea totam."], ["date", "2020-05-06 16:17:38.770734"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.771707"], ["updated_at", "2020-05-05 16:17:38.771707"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Odio sint in exercitationem?"], ["description", "Eum dolorem cumque aut."], ["date", "2020-05-06 16:17:38.773187"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.774102"], ["updated_at", "2020-05-05 16:17:38.774102"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Tempore commodi dolor est?"], ["description", "Praesentium dolorem dolorum velit."], ["date", "2020-05-06 16:17:38.775388"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.776122"], ["updated_at", "2020-05-05 16:17:38.776122"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dolores nihil nobis repellat?"], ["description", "Aut sit rem enim."], ["date", "2020-05-06 16:17:38.777356"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.778090"], ["updated_at", "2020-05-05 16:17:38.778090"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quia aut accusamus qui?"], ["description", "Fuga rerum odit voluptatibus."], ["date", "2020-05-06 16:17:38.779349"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.780106"], ["updated_at", "2020-05-05 16:17:38.780106"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ex tempore voluptatem nostrum?"], ["description", "Officiis cumque et expedita."], ["date", "2020-05-06 16:17:38.781311"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.782023"], ["updated_at", "2020-05-05 16:17:38.782023"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Eos ipsum voluptatem tenetur?"], ["description", "Neque nisi sint aut."], ["date", "2020-05-06 16:17:38.783208"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.783891"], ["updated_at", "2020-05-05 16:17:38.783891"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Est cupiditate dolor minus?"], ["description", "Dignissimos delectus rerum et."], ["date", "2020-05-06 16:17:38.785080"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.785758"], ["updated_at", "2020-05-05 16:17:38.785758"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Non autem reprehenderit dolorem?"], ["description", "Perspiciatis voluptatum rem doloremque."], ["date", "2020-05-06 16:17:38.787008"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.787713"], ["updated_at", "2020-05-05 16:17:38.787713"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et atque incidunt dolores?"], ["description", "Sequi vel neque occaecati."], ["date", "2020-05-06 16:17:38.789446"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.790755"], ["updated_at", "2020-05-05 16:17:38.790755"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Minima est aliquam aut?"], ["description", "Delectus itaque eaque est."], ["date", "2020-05-06 16:17:38.792324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.793241"], ["updated_at", "2020-05-05 16:17:38.793241"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsam"], ["description", "Consequatur laborum est cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.805797"], ["updated_at", "2020-05-05 16:17:38.805797"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Aut in officiis aspernatur?"], ["description", "Asperiores consequatur eveniet magnam."], ["date", "2020-05-06 16:17:38.808782"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.809983"], ["updated_at", "2020-05-05 16:17:38.809983"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Debitis inventore vitae maxime?"], ["description", "Fugiat dolorum distinctio quae."], ["date", "2020-05-06 16:17:38.811547"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.812452"], ["updated_at", "2020-05-05 16:17:38.812452"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ipsum nostrum sit quisquam?"], ["description", "Molestiae dicta omnis ab."], ["date", "2020-05-06 16:17:38.813915"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.814782"], ["updated_at", "2020-05-05 16:17:38.814782"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et qui deserunt quisquam?"], ["description", "Sed minima in fugiat."], ["date", "2020-05-06 16:17:38.816047"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.816794"], ["updated_at", "2020-05-05 16:17:38.816794"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quae non voluptatem eius?"], ["description", "Ullam magni libero tenetur."], ["date", "2020-05-06 16:17:38.817955"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.818622"], ["updated_at", "2020-05-05 16:17:38.818622"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Cumque quo ex eligendi?"], ["description", "Quia dolorum repellat sunt."], ["date", "2020-05-06 16:17:38.819739"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.820405"], ["updated_at", "2020-05-05 16:17:38.820405"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Aut hic est possimus?"], ["description", "Voluptate quos sit ipsa."], ["date", "2020-05-06 16:17:38.821542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.822190"], ["updated_at", "2020-05-05 16:17:38.822190"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Blanditiis aut ut rerum?"], ["description", "Non est aut quis."], ["date", "2020-05-06 16:17:38.823450"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.824289"], ["updated_at", "2020-05-05 16:17:38.824289"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et amet cupiditate facilis?"], ["description", "Nesciunt pariatur sunt ullam."], ["date", "2020-05-06 16:17:38.825432"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.826128"], ["updated_at", "2020-05-05 16:17:38.826128"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatem voluptas repudiandae neque?"], ["description", "Facilis ea distinctio omnis."], ["date", "2020-05-06 16:17:38.828223"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.829413"], ["updated_at", "2020-05-05 16:17:38.829413"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Maxime earum eos eum?"], ["description", "Et quo minima sed."], ["date", "2020-05-06 16:17:38.831041"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.831916"], ["updated_at", "2020-05-05 16:17:38.831916"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Officia qui perspiciatis et?"], ["description", "Voluptatum debitis consequatur error."], ["date", "2020-05-06 16:17:38.833375"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.834265"], ["updated_at", "2020-05-05 16:17:38.834265"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Earum qui architecto fugit?"], ["description", "Est autem corporis officia."], ["date", "2020-05-06 16:17:38.835617"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.836322"], ["updated_at", "2020-05-05 16:17:38.836322"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dignissimos temporibus delectus esse?"], ["description", "Dolorem optio quia facere."], ["date", "2020-05-06 16:17:38.837499"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.838177"], ["updated_at", "2020-05-05 16:17:38.838177"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Excepturi quasi et rem?"], ["description", "Quaerat eligendi qui animi."], ["date", "2020-05-06 16:17:38.839313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.840009"], ["updated_at", "2020-05-05 16:17:38.840009"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Accusamus et culpa et?"], ["description", "Veritatis corporis atque consectetur."], ["date", "2020-05-06 16:17:38.841194"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.841905"], ["updated_at", "2020-05-05 16:17:38.841905"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ut id soluta aliquid?"], ["description", "Asperiores et sed dolorem."], ["date", "2020-05-06 16:17:38.843058"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.843718"], ["updated_at", "2020-05-05 16:17:38.843718"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "At molestiae et doloremque?"], ["description", "Laboriosam a assumenda quo."], ["date", "2020-05-06 16:17:38.844870"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.845529"], ["updated_at", "2020-05-05 16:17:38.845529"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Vel molestiae laudantium nam?"], ["description", "Est beatae vitae animi."], ["date", "2020-05-06 16:17:38.846658"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.847318"], ["updated_at", "2020-05-05 16:17:38.847318"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quis dicta facilis suscipit?"], ["description", "Fugiat enim aliquam voluptatem."], ["date", "2020-05-06 16:17:38.848472"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.849449"], ["updated_at", "2020-05-05 16:17:38.849449"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetingsController#update as HTML
+ Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Quibusdam magni minima optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.862409"], ["updated_at", "2020-05-05 16:17:38.862409"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quae ab asperiores voluptas?"], ["description", "Necessitatibus laborum expedita tenetur."], ["date", "2020-05-06 16:17:38.865153"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.866145"], ["updated_at", "2020-05-05 16:17:38.866145"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Cupiditate nemo soluta repudiandae?"], ["description", "Voluptates earum neque expedita."], ["date", "2020-05-06 16:17:38.867538"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.868282"], ["updated_at", "2020-05-05 16:17:38.868282"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Consequatur repellat quo qui?"], ["description", "Quisquam perspiciatis laudantium vitae."], ["date", "2020-05-06 16:17:38.869819"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.871280"], ["updated_at", "2020-05-05 16:17:38.871280"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Neque adipisci odit ratione?"], ["description", "Nostrum enim et similique."], ["date", "2020-05-06 16:17:38.872958"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.874173"], ["updated_at", "2020-05-05 16:17:38.874173"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Velit voluptatem et enim?"], ["description", "Praesentium quos eum soluta."], ["date", "2020-05-06 16:17:38.876123"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.877142"], ["updated_at", "2020-05-05 16:17:38.877142"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ut ea architecto aut?"], ["description", "Voluptates ad omnis ratione."], ["date", "2020-05-06 16:17:38.878715"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.879696"], ["updated_at", "2020-05-05 16:17:38.879696"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Omnis totam distinctio sapiente?"], ["description", "Est corporis et molestiae."], ["date", "2020-05-06 16:17:38.880951"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.881796"], ["updated_at", "2020-05-05 16:17:38.881796"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Atque ducimus consectetur nisi?"], ["description", "Odio quasi incidunt iusto."], ["date", "2020-05-06 16:17:38.883258"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.884209"], ["updated_at", "2020-05-05 16:17:38.884209"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.8ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Omnis sapiente veniam velit?"], ["description", "Distinctio ex sed possimus."], ["date", "2020-05-06 16:17:38.885571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.886462"], ["updated_at", "2020-05-05 16:17:38.886462"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Reiciendis delectus eaque suscipit?"], ["description", "Voluptatum rerum tempora enim."], ["date", "2020-05-06 16:17:38.888947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.890514"], ["updated_at", "2020-05-05 16:17:38.890514"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Atque non et asperiores?"], ["description", "Deserunt rerum suscipit qui."], ["date", "2020-05-06 16:17:38.892207"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.893121"], ["updated_at", "2020-05-05 16:17:38.893121"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Repellendus magnam non dolores?"], ["description", "Eos quidem ut quas."], ["date", "2020-05-06 16:17:38.894694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.895712"], ["updated_at", "2020-05-05 16:17:38.895712"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Eligendi dolorum asperiores unde?"], ["description", "Vero reiciendis est quae."], ["date", "2020-05-06 16:17:38.897278"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.898134"], ["updated_at", "2020-05-05 16:17:38.898134"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Tenetur est maxime quibusdam?"], ["description", "Et ipsa quia officiis."], ["date", "2020-05-06 16:17:38.899334"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.900119"], ["updated_at", "2020-05-05 16:17:38.900119"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Qui et voluptatibus enim?"], ["description", "Nihil est qui neque."], ["date", "2020-05-06 16:17:38.901555"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.902651"], ["updated_at", "2020-05-05 16:17:38.902651"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Porro eos eligendi sit?"], ["description", "Repellendus labore pariatur amet."], ["date", "2020-05-06 16:17:38.904614"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.905532"], ["updated_at", "2020-05-05 16:17:38.905532"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sit maxime omnis iusto?"], ["description", "Optio laudantium est atque."], ["date", "2020-05-06 16:17:38.906773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.907453"], ["updated_at", "2020-05-05 16:17:38.907453"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Minima consequatur consequatur architecto?"], ["description", "Vero totam id qui."], ["date", "2020-05-06 16:17:38.908678"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.910078"], ["updated_at", "2020-05-05 16:17:38.910078"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Expedita hic rem tempora?"], ["description", "Aliquam enim reprehenderit officia."], ["date", "2020-05-06 16:17:38.911941"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.912853"], ["updated_at", "2020-05-05 16:17:38.912853"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Laborum ipsam explicabo error?"], ["description", "Sed ad quaerat quis."], ["date", "2020-05-06 16:17:38.914412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 16:17:38.915650"], ["updated_at", "2020-05-05 16:17:38.915650"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetingsController#destroy as HTML
+ Parameters: {"meet_id"=>"1", "id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Assumenda odio beatae voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.931668"], ["updated_at", "2020-05-05 16:17:38.931668"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Ut odit ut aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.935376"], ["updated_at", "2020-05-05 16:17:38.935376"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Atque excepturi tenetur provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.937200"], ["updated_at", "2020-05-05 16:17:38.937200"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cum"], ["description", "Modi nihil incidunt ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.938662"], ["updated_at", "2020-05-05 16:17:38.938662"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Unde tempore inventore maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.939980"], ["updated_at", "2020-05-05 16:17:38.939980"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Est delectus optio soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.941359"], ["updated_at", "2020-05-05 16:17:38.941359"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Reprehenderit aut ab iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.942857"], ["updated_at", "2020-05-05 16:17:38.942857"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Et laborum earum cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.944185"], ["updated_at", "2020-05-05 16:17:38.944185"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Id reiciendis recusandae quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.945439"], ["updated_at", "2020-05-05 16:17:38.945439"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Quod commodi ex enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.946711"], ["updated_at", "2020-05-05 16:17:38.946711"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:17:38 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.55ms)
+Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.2ms | Allocations: 3347)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ullam soluta quibusdam enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.985964"], ["updated_at", "2020-05-05 16:17:38.985964"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Amet et voluptas repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.988651"], ["updated_at", "2020-05-05 16:17:38.988651"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloribus"], ["description", "Rerum doloremque nulla nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.991246"], ["updated_at", "2020-05-05 16:17:38.991246"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "At doloremque provident et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.993330"], ["updated_at", "2020-05-05 16:17:38.993330"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Nemo quas dolor eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.994785"], ["updated_at", "2020-05-05 16:17:38.994785"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Rerum nemo aut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.996239"], ["updated_at", "2020-05-05 16:17:38.996239"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Iste eum ipsam eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.997547"], ["updated_at", "2020-05-05 16:17:38.997547"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Est nulla vel beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:38.998834"], ["updated_at", "2020-05-05 16:17:38.998834"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Animi beatae rerum nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.000135"], ["updated_at", "2020-05-05 16:17:39.000135"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Ab pariatur impedit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.001420"], ["updated_at", "2020-05-05 16:17:39.001420"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:17:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.12ms)
+Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2610)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Ea reprehenderit quos dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.016801"], ["updated_at", "2020-05-05 16:17:39.016801"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Blanditiis cum vel sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.019426"], ["updated_at", "2020-05-05 16:17:39.019426"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magni"], ["description", "Mollitia eligendi dolore est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.020826"], ["updated_at", "2020-05-05 16:17:39.020826"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Fugiat exercitationem veritatis numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.022116"], ["updated_at", "2020-05-05 16:17:39.022116"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Modi consequatur maxime quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.023402"], ["updated_at", "2020-05-05 16:17:39.023402"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Doloribus qui qui architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.024707"], ["updated_at", "2020-05-05 16:17:39.024707"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Impedit modi vitae aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.026002"], ["updated_at", "2020-05-05 16:17:39.026002"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Sit ea odit similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.027288"], ["updated_at", "2020-05-05 16:17:39.027288"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Harum fugiat modi ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.028494"], ["updated_at", "2020-05-05 16:17:39.028494"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cum"], ["description", "Et ducimus saepe omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.029880"], ["updated_at", "2020-05-05 16:17:39.029880"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 13:17:39 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Eum fugiat assumenda excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.042046"], ["updated_at", "2020-05-05 16:17:39.042046"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Temporibus cumque dolor itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.044750"], ["updated_at", "2020-05-05 16:17:39.044750"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Cumque dolore sit omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.046089"], ["updated_at", "2020-05-05 16:17:39.046089"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Distinctio impedit expedita voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.047365"], ["updated_at", "2020-05-05 16:17:39.047365"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Voluptate harum quia ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.048660"], ["updated_at", "2020-05-05 16:17:39.048660"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Temporibus aspernatur deserunt et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.050489"], ["updated_at", "2020-05-05 16:17:39.050489"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Aspernatur ut sed ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.052663"], ["updated_at", "2020-05-05 16:17:39.052663"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Labore est et nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.054142"], ["updated_at", "2020-05-05 16:17:39.054142"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Qui rerum architecto earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.055608"], ["updated_at", "2020-05-05 16:17:39.055608"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Et iusto est eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.056934"], ["updated_at", "2020-05-05 16:17:39.056934"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 13:17:39 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Qui eum ullam sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.068239"], ["updated_at", "2020-05-05 16:17:39.068239"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Temporibus non ut consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.071670"], ["updated_at", "2020-05-05 16:17:39.071670"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Aut minus et impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.073291"], ["updated_at", "2020-05-05 16:17:39.073291"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Minus occaecati tempore voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.074860"], ["updated_at", "2020-05-05 16:17:39.074860"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Placeat esse libero incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.076437"], ["updated_at", "2020-05-05 16:17:39.076437"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Aliquid autem aut rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.077728"], ["updated_at", "2020-05-05 16:17:39.077728"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Et vel dolor ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.078978"], ["updated_at", "2020-05-05 16:17:39.078978"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ab"], ["description", "Et qui maiores dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.080188"], ["updated_at", "2020-05-05 16:17:39.080188"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Nihil qui et rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.081468"], ["updated_at", "2020-05-05 16:17:39.081468"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Et eum qui sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.082635"], ["updated_at", "2020-05-05 16:17:39.082635"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 13:17:39 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Nihil sed id quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.094205"], ["updated_at", "2020-05-05 16:17:39.094205"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magni"], ["description", "Sit dolorem dolor incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.097390"], ["updated_at", "2020-05-05 16:17:39.097390"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Consequatur et vel consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.099100"], ["updated_at", "2020-05-05 16:17:39.099100"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Deleniti illum et aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.100665"], ["updated_at", "2020-05-05 16:17:39.100665"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Ex esse porro earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.102185"], ["updated_at", "2020-05-05 16:17:39.102185"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Saepe et et numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.103695"], ["updated_at", "2020-05-05 16:17:39.103695"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Laudantium maiores et molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.105136"], ["updated_at", "2020-05-05 16:17:39.105136"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Ut omnis debitis sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.106655"], ["updated_at", "2020-05-05 16:17:39.106655"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Id quibusdam sed sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.108115"], ["updated_at", "2020-05-05 16:17:39.108115"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Sed eos rerum amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.109446"], ["updated_at", "2020-05-05 16:17:39.109446"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 13:17:39 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "hic"], ["description", "Debitis error accusamus dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.122350"], ["updated_at", "2020-05-05 16:17:39.122350"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quas"], ["description", "Officia repellat et sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.126552"], ["updated_at", "2020-05-05 16:17:39.126552"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Expedita quia vel impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.128004"], ["updated_at", "2020-05-05 16:17:39.128004"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minus"], ["description", "Id id ratione impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.129253"], ["updated_at", "2020-05-05 16:17:39.129253"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Et saepe ut mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.130826"], ["updated_at", "2020-05-05 16:17:39.130826"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Sint ut cumque placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.132577"], ["updated_at", "2020-05-05 16:17:39.132577"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "amet"], ["description", "Dolores dolor est sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.134021"], ["updated_at", "2020-05-05 16:17:39.134021"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "necessitatibus"], ["description", "Ad debitis et aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.135463"], ["updated_at", "2020-05-05 16:17:39.135463"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Facilis voluptatibus voluptas quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.136962"], ["updated_at", "2020-05-05 16:17:39.136962"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Sit fugit consequatur quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.138265"], ["updated_at", "2020-05-05 16:17:39.138265"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 13:17:39 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Saepe commodi quia velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.149983"], ["updated_at", "2020-05-05 16:17:39.149983"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Quia error facilis dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.153175"], ["updated_at", "2020-05-05 16:17:39.153175"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Qui est quae excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.154772"], ["updated_at", "2020-05-05 16:17:39.154772"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "At consequatur qui commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.156266"], ["updated_at", "2020-05-05 16:17:39.156266"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Voluptatem dolorum in amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.157627"], ["updated_at", "2020-05-05 16:17:39.157627"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Sit incidunt est consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.158896"], ["updated_at", "2020-05-05 16:17:39.158896"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Vero et qui maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.160148"], ["updated_at", "2020-05-05 16:17:39.160148"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Architecto sapiente debitis dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.161437"], ["updated_at", "2020-05-05 16:17:39.161437"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Maxime provident sint ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.162772"], ["updated_at", "2020-05-05 16:17:39.162772"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Dolores similique beatae id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.164015"], ["updated_at", "2020-05-05 16:17:39.164015"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 13:17:39 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laboriosam"], ["description", "Aperiam asperiores aliquam expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.175578"], ["updated_at", "2020-05-05 16:17:39.175578"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Labore inventore doloribus facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.179293"], ["updated_at", "2020-05-05 16:17:39.179293"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Sapiente omnis beatae voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.180746"], ["updated_at", "2020-05-05 16:17:39.180746"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Quas commodi occaecati possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.182023"], ["updated_at", "2020-05-05 16:17:39.182023"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Sed consequatur quidem officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.183719"], ["updated_at", "2020-05-05 16:17:39.183719"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "beatae"], ["description", "Id expedita similique deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.185033"], ["updated_at", "2020-05-05 16:17:39.185033"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Culpa dolores et cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.186301"], ["updated_at", "2020-05-05 16:17:39.186301"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Omnis quidem accusantium dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.187565"], ["updated_at", "2020-05-05 16:17:39.187565"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Aut voluptas nulla ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.188814"], ["updated_at", "2020-05-05 16:17:39.188814"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Facere inventore rerum voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.190072"], ["updated_at", "2020-05-05 16:17:39.190072"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 13:17:39 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Aut perspiciatis corrupti in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.201579"], ["updated_at", "2020-05-05 16:17:39.201579"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Reiciendis alias illum laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.205136"], ["updated_at", "2020-05-05 16:17:39.205136"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Enim debitis voluptates est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.206528"], ["updated_at", "2020-05-05 16:17:39.206528"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illum"], ["description", "Rerum itaque delectus omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.207790"], ["updated_at", "2020-05-05 16:17:39.207790"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Corrupti expedita quia earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.209079"], ["updated_at", "2020-05-05 16:17:39.209079"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Repudiandae quisquam quo quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.210592"], ["updated_at", "2020-05-05 16:17:39.210592"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Veritatis eum minima aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.212500"], ["updated_at", "2020-05-05 16:17:39.212500"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Sit blanditiis consequuntur unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.213947"], ["updated_at", "2020-05-05 16:17:39.213947"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Sit voluptatem iusto non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.215297"], ["updated_at", "2020-05-05 16:17:39.215297"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Rerum sed non consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.216821"], ["updated_at", "2020-05-05 16:17:39.216821"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 13:17:39 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Praesentium ut officiis occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.228478"], ["updated_at", "2020-05-05 16:17:39.228478"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iste"], ["description", "Quia porro soluta voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.231326"], ["updated_at", "2020-05-05 16:17:39.231326"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Mollitia vel incidunt vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.233126"], ["updated_at", "2020-05-05 16:17:39.233126"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Maxime consequatur corporis cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.234747"], ["updated_at", "2020-05-05 16:17:39.234747"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quas"], ["description", "Facilis velit corporis vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.237332"], ["updated_at", "2020-05-05 16:17:39.237332"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Qui minima odit quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.239036"], ["updated_at", "2020-05-05 16:17:39.239036"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Nesciunt ullam occaecati aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.240459"], ["updated_at", "2020-05-05 16:17:39.240459"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Nesciunt nihil dolor quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.242284"], ["updated_at", "2020-05-05 16:17:39.242284"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Placeat totam dolorum neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.244152"], ["updated_at", "2020-05-05 16:17:39.244152"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Et eligendi similique ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.245451"], ["updated_at", "2020-05-05 16:17:39.245451"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 13:17:39 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Laboriosam nobis quae voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.259085"], ["updated_at", "2020-05-05 16:17:39.259085"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Odit molestiae neque iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.262002"], ["updated_at", "2020-05-05 16:17:39.262002"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eius"], ["description", "Quo exercitationem laudantium dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.263430"], ["updated_at", "2020-05-05 16:17:39.263430"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Voluptatibus ut illum incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.264722"], ["updated_at", "2020-05-05 16:17:39.264722"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Alias libero doloremque quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.265989"], ["updated_at", "2020-05-05 16:17:39.265989"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Sit adipisci consequatur ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.267303"], ["updated_at", "2020-05-05 16:17:39.267303"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Aut ipsam praesentium aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.268576"], ["updated_at", "2020-05-05 16:17:39.268576"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Autem error minima pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.269829"], ["updated_at", "2020-05-05 16:17:39.269829"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Eos ipsum et enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.271199"], ["updated_at", "2020-05-05 16:17:39.271199"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "necessitatibus"], ["description", "Deserunt laboriosam velit itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.273052"], ["updated_at", "2020-05-05 16:17:39.273052"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 13:17:39 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Non est officiis quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.285062"], ["updated_at", "2020-05-05 16:17:39.285062"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Voluptatibus ducimus minus occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.287677"], ["updated_at", "2020-05-05 16:17:39.287677"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Modi similique perspiciatis eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.289072"], ["updated_at", "2020-05-05 16:17:39.289072"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Et aspernatur est provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.290387"], ["updated_at", "2020-05-05 16:17:39.290387"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Id fugiat accusantium distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.291984"], ["updated_at", "2020-05-05 16:17:39.291984"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempora"], ["description", "Esse voluptatem et in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.293746"], ["updated_at", "2020-05-05 16:17:39.293746"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Recusandae expedita eum error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.295140"], ["updated_at", "2020-05-05 16:17:39.295140"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Enim explicabo provident beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.296553"], ["updated_at", "2020-05-05 16:17:39.296553"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Molestiae nesciunt voluptatem officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.297936"], ["updated_at", "2020-05-05 16:17:39.297936"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Sunt autem ratione labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:17:39.299182"], ["updated_at", "2020-05-05 16:17:39.299182"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 13:17:39 -0300
+Processing by MeetsController#destroy as HTML
+ Parameters: {"id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (127.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (95.5ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (103.6ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.9ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (120.3ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (203.6ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (1.1ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (108.9ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (1.2ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (111.6ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (1.0ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Aliquid autem debitis eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.439864"], ["updated_at", "2020-05-05 16:19:19.439864"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Molestias cum aperiam reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.443439"], ["updated_at", "2020-05-05 16:19:19.443439"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Culpa necessitatibus in modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.456524"], ["updated_at", "2020-05-05 16:19:19.456524"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Voluptatem accusamus ea consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.459932"], ["updated_at", "2020-05-05 16:19:19.459932"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Molestiae mollitia ad iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.461692"], ["updated_at", "2020-05-05 16:19:19.461692"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Autem modi pariatur ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.462989"], ["updated_at", "2020-05-05 16:19:19.462989"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Accusamus aut harum laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.464256"], ["updated_at", "2020-05-05 16:19:19.464256"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Quae enim nihil unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.465554"], ["updated_at", "2020-05-05 16:19:19.465554"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Vel quis veniam pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.467163"], ["updated_at", "2020-05-05 16:19:19.467163"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Repudiandae quia molestias fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.469433"], ["updated_at", "2020-05-05 16:19:19.469433"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.48ms)
+Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.2ms | Allocations: 3562)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Odio quam enim rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.531888"], ["updated_at", "2020-05-05 16:19:19.531888"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Autem eum non tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.535768"], ["updated_at", "2020-05-05 16:19:19.535768"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Expedita iusto modi ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.537629"], ["updated_at", "2020-05-05 16:19:19.537629"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quaerat"], ["description", "Iusto optio hic corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.538910"], ["updated_at", "2020-05-05 16:19:19.538910"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Animi magnam quibusdam perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.540208"], ["updated_at", "2020-05-05 16:19:19.540208"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Nostrum sed quia corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.541548"], ["updated_at", "2020-05-05 16:19:19.541548"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Fugit delectus voluptas ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.542837"], ["updated_at", "2020-05-05 16:19:19.542837"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Quos et autem possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.544063"], ["updated_at", "2020-05-05 16:19:19.544063"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Labore quos tempore minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.545375"], ["updated_at", "2020-05-05 16:19:19.545375"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Sint laudantium distinctio officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.546775"], ["updated_at", "2020-05-05 16:19:19.546775"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (2.89ms)
+Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2611)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Molestiae praesentium optio officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.565011"], ["updated_at", "2020-05-05 16:19:19.565011"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Fugiat et in nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.569858"], ["updated_at", "2020-05-05 16:19:19.569858"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Sit et aut molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.573715"], ["updated_at", "2020-05-05 16:19:19.573715"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Ut hic consequatur et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.575358"], ["updated_at", "2020-05-05 16:19:19.575358"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Provident quae molestias suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.576745"], ["updated_at", "2020-05-05 16:19:19.576745"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Veritatis explicabo optio quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.578033"], ["updated_at", "2020-05-05 16:19:19.578033"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Quibusdam ut dignissimos incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.579293"], ["updated_at", "2020-05-05 16:19:19.579293"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Rerum velit unde quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.580600"], ["updated_at", "2020-05-05 16:19:19.580600"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Et est repellendus quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.581895"], ["updated_at", "2020-05-05 16:19:19.581895"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Beatae amet debitis provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.583177"], ["updated_at", "2020-05-05 16:19:19.583177"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.13ms)
+Completed 422 Unprocessable Entity in 12ms (Views: 7.2ms | ActiveRecord: 0.0ms | Allocations: 934)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Sit assumenda sed blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.639623"], ["updated_at", "2020-05-05 16:19:19.639623"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Consequuntur totam fugiat praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.643436"], ["updated_at", "2020-05-05 16:19:19.643436"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Nihil asperiores rerum enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.646260"], ["updated_at", "2020-05-05 16:19:19.646260"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Velit eligendi maxime omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.649386"], ["updated_at", "2020-05-05 16:19:19.649386"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Rem omnis vel quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.652825"], ["updated_at", "2020-05-05 16:19:19.652825"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Corrupti commodi voluptatem nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.656865"], ["updated_at", "2020-05-05 16:19:19.656865"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Pariatur molestiae explicabo voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.659693"], ["updated_at", "2020-05-05 16:19:19.659693"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Similique delectus corrupti accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.662350"], ["updated_at", "2020-05-05 16:19:19.662350"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Nulla tempore qui ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.664952"], ["updated_at", "2020-05-05 16:19:19.664952"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "architecto"], ["description", "Enim et nesciunt sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.668042"], ["updated_at", "2020-05-05 16:19:19.668042"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Et at consequuntur libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.683994"], ["updated_at", "2020-05-05 16:19:19.683994"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Minus eos cumque ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.686996"], ["updated_at", "2020-05-05 16:19:19.686996"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Numquam commodi sapiente ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.689001"], ["updated_at", "2020-05-05 16:19:19.689001"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Et aut quo natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.692673"], ["updated_at", "2020-05-05 16:19:19.692673"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Quia modi non rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.695798"], ["updated_at", "2020-05-05 16:19:19.695798"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Nesciunt est dolorem rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.697849"], ["updated_at", "2020-05-05 16:19:19.697849"], ["created_by", "1"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Aut ut mollitia temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.699606"], ["updated_at", "2020-05-05 16:19:19.699606"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Ipsam molestiae consequatur vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.701005"], ["updated_at", "2020-05-05 16:19:19.701005"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Omnis numquam eius assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.702341"], ["updated_at", "2020-05-05 16:19:19.702341"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Nemo dolores deleniti aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.703731"], ["updated_at", "2020-05-05 16:19:19.703731"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Excepturi veniam aut id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.717369"], ["updated_at", "2020-05-05 16:19:19.717369"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Delectus et impedit quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.720053"], ["updated_at", "2020-05-05 16:19:19.720053"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Eum hic voluptatem non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.721528"], ["updated_at", "2020-05-05 16:19:19.721528"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Earum autem a rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.722890"], ["updated_at", "2020-05-05 16:19:19.722890"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Expedita labore sit eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.724538"], ["updated_at", "2020-05-05 16:19:19.724538"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quas"], ["description", "Nihil nemo doloremque cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.728372"], ["updated_at", "2020-05-05 16:19:19.728372"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Magnam dolorum veniam omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.732546"], ["updated_at", "2020-05-05 16:19:19.732546"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Tempora qui modi est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.735499"], ["updated_at", "2020-05-05 16:19:19.735499"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Ut reprehenderit molestiae quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.736971"], ["updated_at", "2020-05-05 16:19:19.736971"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Rerum dolor incidunt quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.738283"], ["updated_at", "2020-05-05 16:19:19.738283"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Eos error ipsam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.753594"], ["updated_at", "2020-05-05 16:19:19.753594"], ["created_by", "1"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Eum cupiditate voluptatum harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.757731"], ["updated_at", "2020-05-05 16:19:19.757731"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quam"], ["description", "Placeat eum iusto cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.759423"], ["updated_at", "2020-05-05 16:19:19.759423"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempore"], ["description", "Voluptatem cumque qui totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.760727"], ["updated_at", "2020-05-05 16:19:19.760727"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Qui qui praesentium et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.762030"], ["updated_at", "2020-05-05 16:19:19.762030"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Ea saepe qui vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.763346"], ["updated_at", "2020-05-05 16:19:19.763346"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Et eius iure quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.764863"], ["updated_at", "2020-05-05 16:19:19.764863"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Ut eius dolores quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.766259"], ["updated_at", "2020-05-05 16:19:19.766259"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Esse at ipsum nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.767752"], ["updated_at", "2020-05-05 16:19:19.767752"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Dolorum architecto quos sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.769978"], ["updated_at", "2020-05-05 16:19:19.769978"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Magni quas hic et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.799079"], ["updated_at", "2020-05-05 16:19:19.799079"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Qui in sapiente impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.802817"], ["updated_at", "2020-05-05 16:19:19.802817"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Nesciunt illum doloremque consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.804681"], ["updated_at", "2020-05-05 16:19:19.804681"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Accusamus officia est deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.805997"], ["updated_at", "2020-05-05 16:19:19.805997"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Nesciunt distinctio temporibus amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.807349"], ["updated_at", "2020-05-05 16:19:19.807349"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Maxime voluptatum omnis sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.809161"], ["updated_at", "2020-05-05 16:19:19.809161"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Dolorum qui molestiae soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.812414"], ["updated_at", "2020-05-05 16:19:19.812414"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "amet"], ["description", "Et debitis quidem repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.814620"], ["updated_at", "2020-05-05 16:19:19.814620"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Itaque dolorum qui unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.816074"], ["updated_at", "2020-05-05 16:19:19.816074"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloribus"], ["description", "Modi tempore et rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.817643"], ["updated_at", "2020-05-05 16:19:19.817643"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Quasi accusamus mollitia eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.830156"], ["updated_at", "2020-05-05 16:19:19.830156"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Perspiciatis ab hic quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.834202"], ["updated_at", "2020-05-05 16:19:19.834202"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Sed et expedita alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.836718"], ["updated_at", "2020-05-05 16:19:19.836718"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Officia quo voluptatum aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.838190"], ["updated_at", "2020-05-05 16:19:19.838190"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Excepturi tempora aut amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.839539"], ["updated_at", "2020-05-05 16:19:19.839539"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Distinctio laborum occaecati ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.840825"], ["updated_at", "2020-05-05 16:19:19.840825"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Minus ut maiores eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.842138"], ["updated_at", "2020-05-05 16:19:19.842138"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Dolore nemo repellat magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.843444"], ["updated_at", "2020-05-05 16:19:19.843444"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Ex earum optio distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.844764"], ["updated_at", "2020-05-05 16:19:19.844764"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ab"], ["description", "Quia enim dolorem praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.846065"], ["updated_at", "2020-05-05 16:19:19.846065"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Perferendis laboriosam possimus tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.859777"], ["updated_at", "2020-05-05 16:19:19.859777"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Voluptas pariatur dolores qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.865320"], ["updated_at", "2020-05-05 16:19:19.865320"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nisi"], ["description", "Voluptatem voluptatem eligendi consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.866936"], ["updated_at", "2020-05-05 16:19:19.866936"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Et repellendus aspernatur molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.868271"], ["updated_at", "2020-05-05 16:19:19.868271"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Exercitationem ducimus voluptas eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.870136"], ["updated_at", "2020-05-05 16:19:19.870136"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Debitis quas amet voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.873714"], ["updated_at", "2020-05-05 16:19:19.873714"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Sit facere labore maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.875379"], ["updated_at", "2020-05-05 16:19:19.875379"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Iure velit est sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.876845"], ["updated_at", "2020-05-05 16:19:19.876845"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Sed illo ex laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.878347"], ["updated_at", "2020-05-05 16:19:19.878347"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Sapiente dignissimos cum laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.879867"], ["updated_at", "2020-05-05 16:19:19.879867"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Blanditiis voluptatem aperiam qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.891419"], ["updated_at", "2020-05-05 16:19:19.891419"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minus"], ["description", "Deleniti nihil tempore dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.894781"], ["updated_at", "2020-05-05 16:19:19.894781"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Commodi ullam alias vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.897478"], ["updated_at", "2020-05-05 16:19:19.897478"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Qui quaerat voluptates eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.899004"], ["updated_at", "2020-05-05 16:19:19.899004"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Tempora sint ut consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.900395"], ["updated_at", "2020-05-05 16:19:19.900395"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Officia veritatis et inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.901721"], ["updated_at", "2020-05-05 16:19:19.901721"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Quae quos velit illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.903041"], ["updated_at", "2020-05-05 16:19:19.903041"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Eius porro eos id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.904312"], ["updated_at", "2020-05-05 16:19:19.904312"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Et eum in facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.905962"], ["updated_at", "2020-05-05 16:19:19.905962"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Ut autem quam animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.907462"], ["updated_at", "2020-05-05 16:19:19.907462"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Tenetur sint soluta non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.921143"], ["updated_at", "2020-05-05 16:19:19.921143"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Inventore perferendis corrupti magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.923869"], ["updated_at", "2020-05-05 16:19:19.923869"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Odio ab dicta qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.925483"], ["updated_at", "2020-05-05 16:19:19.925483"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Quibusdam sed dolorum aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.926836"], ["updated_at", "2020-05-05 16:19:19.926836"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Inventore nam tempora dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.928147"], ["updated_at", "2020-05-05 16:19:19.928147"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Iusto dolores placeat praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.929918"], ["updated_at", "2020-05-05 16:19:19.929918"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Tempore nihil tenetur omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.933538"], ["updated_at", "2020-05-05 16:19:19.933538"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Illo error consectetur fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.935610"], ["updated_at", "2020-05-05 16:19:19.935610"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Odio voluptatem reiciendis minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.937134"], ["updated_at", "2020-05-05 16:19:19.937134"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "a"], ["description", "Et veritatis eveniet ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.938686"], ["updated_at", "2020-05-05 16:19:19.938686"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "Consequatur fugiat aliquam in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.950323"], ["updated_at", "2020-05-05 16:19:19.950323"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Veniam sit laborum iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.954171"], ["updated_at", "2020-05-05 16:19:19.954171"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "architecto"], ["description", "In nulla at voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.955852"], ["updated_at", "2020-05-05 16:19:19.955852"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Ipsum quaerat et molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.958365"], ["updated_at", "2020-05-05 16:19:19.958365"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Ratione veniam saepe qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.961653"], ["updated_at", "2020-05-05 16:19:19.961653"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Adipisci dolores et harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.963311"], ["updated_at", "2020-05-05 16:19:19.963311"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Repudiandae qui eos sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.964636"], ["updated_at", "2020-05-05 16:19:19.964636"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Quo id sunt unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.965961"], ["updated_at", "2020-05-05 16:19:19.965961"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Et quam rem accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.967283"], ["updated_at", "2020-05-05 16:19:19.967283"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Et quae molestias quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:19:19.968654"], ["updated_at", "2020-05-05 16:19:19.968654"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 13:19:19 -0300
+Processing by MeetsController#destroy as HTML
+ Parameters: {"id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (42.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (141.5ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (99.2ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (106.8ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (1.0ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.8ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (117.3ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (1.0ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (114.5ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (94.2ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (75.6ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.3ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (55.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quam"], ["description", "Non id dolorum in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.138443"], ["updated_at", "2020-05-05 16:20:49.138443"], ["created_by", "1"]]
+ [1m[35m (0.8ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Animi eum officia voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.198990"], ["updated_at", "2020-05-05 16:20:49.198990"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Omnis reiciendis nostrum est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.206184"], ["updated_at", "2020-05-05 16:20:49.206184"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Doloremque aliquam soluta repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.212696"], ["updated_at", "2020-05-05 16:20:49.212696"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Eum voluptatem ratione perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.238468"], ["updated_at", "2020-05-05 16:20:49.238468"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Voluptatibus corrupti perspiciatis corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.240257"], ["updated_at", "2020-05-05 16:20:49.240257"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Ullam dolorem dolores ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.242486"], ["updated_at", "2020-05-05 16:20:49.242486"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Sunt repellat itaque omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.244432"], ["updated_at", "2020-05-05 16:20:49.244432"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Quasi excepturi molestias et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.245808"], ["updated_at", "2020-05-05 16:20:49.245808"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Beatae est enim illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.247167"], ["updated_at", "2020-05-05 16:20:49.247167"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:20:49 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.27ms)
+Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.2ms | Allocations: 3561)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Veritatis eum repellendus in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.305567"], ["updated_at", "2020-05-05 16:20:49.305567"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ab"], ["description", "Unde nostrum quo assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.308542"], ["updated_at", "2020-05-05 16:20:49.308542"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Deleniti cupiditate aut ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.310713"], ["updated_at", "2020-05-05 16:20:49.310713"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Cumque reprehenderit repellendus temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.312789"], ["updated_at", "2020-05-05 16:20:49.312789"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Facere debitis voluptas at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.314161"], ["updated_at", "2020-05-05 16:20:49.314161"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Omnis nostrum totam voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.315628"], ["updated_at", "2020-05-05 16:20:49.315628"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Modi libero officiis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.316996"], ["updated_at", "2020-05-05 16:20:49.316996"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Commodi perferendis animi non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.318278"], ["updated_at", "2020-05-05 16:20:49.318278"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Voluptatibus quas sapiente et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.319583"], ["updated_at", "2020-05-05 16:20:49.319583"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Non cum enim odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:20:49.321161"], ["updated_at", "2020-05-05 16:20:49.321161"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:20:49 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.61ms)
+Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.2ms | Allocations: 2614)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (240.0ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (110.7ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (106.8ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (2.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (133.4ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (57.6ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (75.6ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (74.4ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Ipsum sint atque non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.312618"], ["updated_at", "2020-05-05 16:21:30.312618"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "A atque ut quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.317162"], ["updated_at", "2020-05-05 16:21:30.317162"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Error quae amet quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.319773"], ["updated_at", "2020-05-05 16:21:30.319773"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "At iure minus sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.339920"], ["updated_at", "2020-05-05 16:21:30.339920"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Aut doloribus magnam dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.342675"], ["updated_at", "2020-05-05 16:21:30.342675"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Sit dolores architecto consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.345430"], ["updated_at", "2020-05-05 16:21:30.345430"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Et nostrum blanditiis cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.347312"], ["updated_at", "2020-05-05 16:21:30.347312"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "a"], ["description", "Iusto officiis non nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.348672"], ["updated_at", "2020-05-05 16:21:30.348672"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Rem velit fugit blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.349921"], ["updated_at", "2020-05-05 16:21:30.349921"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Ullam maxime quaerat reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.351200"], ["updated_at", "2020-05-05 16:21:30.351200"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:21:30 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.05ms)
+Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.3ms | Allocations: 3559)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Repudiandae harum sint veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.416856"], ["updated_at", "2020-05-05 16:21:30.416856"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Vel soluta id doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.419820"], ["updated_at", "2020-05-05 16:21:30.419820"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Sit esse expedita et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.421356"], ["updated_at", "2020-05-05 16:21:30.421356"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "adipisci"], ["description", "Quam similique vel tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.423348"], ["updated_at", "2020-05-05 16:21:30.423348"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Consequatur alias aperiam sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.426208"], ["updated_at", "2020-05-05 16:21:30.426208"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Et similique et adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.429774"], ["updated_at", "2020-05-05 16:21:30.429774"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Ut molestiae iure ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.431312"], ["updated_at", "2020-05-05 16:21:30.431312"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Suscipit impedit in quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.432652"], ["updated_at", "2020-05-05 16:21:30.432652"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Et est provident illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.433967"], ["updated_at", "2020-05-05 16:21:30.433967"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Et autem id incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.435317"], ["updated_at", "2020-05-05 16:21:30.435317"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:21:30 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.34ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2611)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Molestiae sint consequatur hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.451048"], ["updated_at", "2020-05-05 16:21:30.451048"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Deleniti dolorem quia autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.453829"], ["updated_at", "2020-05-05 16:21:30.453829"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Delectus autem est cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.456434"], ["updated_at", "2020-05-05 16:21:30.456434"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Sit nihil voluptatem quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.461467"], ["updated_at", "2020-05-05 16:21:30.461467"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Veritatis quia error est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.463289"], ["updated_at", "2020-05-05 16:21:30.463289"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Consequatur itaque est blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.464959"], ["updated_at", "2020-05-05 16:21:30.464959"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Et nam aut aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.467271"], ["updated_at", "2020-05-05 16:21:30.467271"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Consectetur iste earum laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.469361"], ["updated_at", "2020-05-05 16:21:30.469361"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Veritatis expedita et qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.470674"], ["updated_at", "2020-05-05 16:21:30.470674"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Autem est facere assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.472024"], ["updated_at", "2020-05-05 16:21:30.472024"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 13:21:30 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 8ms (Views: 4.6ms | ActiveRecord: 0.0ms | Allocations: 934)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Maxime id provident laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.522175"], ["updated_at", "2020-05-05 16:21:30.522175"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Voluptatem iste modi minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.525251"], ["updated_at", "2020-05-05 16:21:30.525251"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Ut et quos dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.527639"], ["updated_at", "2020-05-05 16:21:30.527639"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Omnis quo et quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.529771"], ["updated_at", "2020-05-05 16:21:30.529771"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Quasi iure ut ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.531097"], ["updated_at", "2020-05-05 16:21:30.531097"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Quod inventore excepturi natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.532515"], ["updated_at", "2020-05-05 16:21:30.532515"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Sunt ea velit ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.533921"], ["updated_at", "2020-05-05 16:21:30.533921"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Et rerum ut rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.535243"], ["updated_at", "2020-05-05 16:21:30.535243"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Id odio et ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.536599"], ["updated_at", "2020-05-05 16:21:30.536599"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vero"], ["description", "Qui nesciunt rerum cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.537944"], ["updated_at", "2020-05-05 16:21:30.537944"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 13:21:30 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Numquam id eos qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.550118"], ["updated_at", "2020-05-05 16:21:30.550118"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Exercitationem et pariatur ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.552953"], ["updated_at", "2020-05-05 16:21:30.552953"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Eos ut illo dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.554468"], ["updated_at", "2020-05-05 16:21:30.554468"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Dolor ipsa omnis quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.555971"], ["updated_at", "2020-05-05 16:21:30.555971"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Recusandae qui itaque magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.559229"], ["updated_at", "2020-05-05 16:21:30.559229"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Laborum officiis quibusdam reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.561274"], ["updated_at", "2020-05-05 16:21:30.561274"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Eligendi quae et velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.562682"], ["updated_at", "2020-05-05 16:21:30.562682"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Possimus aspernatur consequatur consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.564099"], ["updated_at", "2020-05-05 16:21:30.564099"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "occaecati"], ["description", "Consequuntur quasi vitae et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.565994"], ["updated_at", "2020-05-05 16:21:30.565994"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iste"], ["description", "Aut laudantium eum quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.568400"], ["updated_at", "2020-05-05 16:21:30.568400"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 13:21:30 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Sed fuga quia quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.580095"], ["updated_at", "2020-05-05 16:21:30.580095"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Accusamus veritatis qui error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.583083"], ["updated_at", "2020-05-05 16:21:30.583083"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Necessitatibus consequuntur consequatur molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.584592"], ["updated_at", "2020-05-05 16:21:30.584592"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Sunt aspernatur et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.586529"], ["updated_at", "2020-05-05 16:21:30.586529"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Omnis occaecati quas fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.588049"], ["updated_at", "2020-05-05 16:21:30.588049"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Officiis dolores sunt quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.590248"], ["updated_at", "2020-05-05 16:21:30.590248"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Dolorum molestias sed tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.592874"], ["updated_at", "2020-05-05 16:21:30.592874"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "necessitatibus"], ["description", "Sapiente ratione illum nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.594403"], ["updated_at", "2020-05-05 16:21:30.594403"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Tempore et sed sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.595822"], ["updated_at", "2020-05-05 16:21:30.595822"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Odit magnam aut perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:21:30.597172"], ["updated_at", "2020-05-05 16:21:30.597172"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 13:21:30 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (10.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (76.8ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.9ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (88.5ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (100.8ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (118.2ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (81.9ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (94.5ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (86.6ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odio"], ["description", "Sed neque et mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.167145"], ["updated_at", "2020-05-05 16:22:51.167145"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Sit repudiandae repellendus error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.174840"], ["updated_at", "2020-05-05 16:22:51.174840"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Et vero sapiente mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.176722"], ["updated_at", "2020-05-05 16:22:51.176722"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Cumque necessitatibus voluptatem aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.190422"], ["updated_at", "2020-05-05 16:22:51.190422"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quam"], ["description", "Aspernatur recusandae architecto temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.193393"], ["updated_at", "2020-05-05 16:22:51.193393"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Maiores et aut qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.195450"], ["updated_at", "2020-05-05 16:22:51.195450"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Sed odio non vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.196902"], ["updated_at", "2020-05-05 16:22:51.196902"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Cumque quia accusantium odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.198344"], ["updated_at", "2020-05-05 16:22:51.198344"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "totam"], ["description", "Repellendus ea animi ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.199677"], ["updated_at", "2020-05-05 16:22:51.199677"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Quae ipsum numquam rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.200988"], ["updated_at", "2020-05-05 16:22:51.200988"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:22:51 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.8ms)
+Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.2ms | Allocations: 3560)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Sunt voluptates ex nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.262491"], ["updated_at", "2020-05-05 16:22:51.262491"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "In corrupti non atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.266427"], ["updated_at", "2020-05-05 16:22:51.266427"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Quia ad aut voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.269236"], ["updated_at", "2020-05-05 16:22:51.269236"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Quia rerum est non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.270765"], ["updated_at", "2020-05-05 16:22:51.270765"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Impedit qui officiis quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.272109"], ["updated_at", "2020-05-05 16:22:51.272109"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Inventore dicta alias eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.273817"], ["updated_at", "2020-05-05 16:22:51.273817"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illum"], ["description", "Cum quae aut maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.276024"], ["updated_at", "2020-05-05 16:22:51.276024"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Eos perspiciatis ut natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.277434"], ["updated_at", "2020-05-05 16:22:51.277434"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Est rem aut reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.278759"], ["updated_at", "2020-05-05 16:22:51.278759"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Consequatur laboriosam corporis iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.280185"], ["updated_at", "2020-05-05 16:22:51.280185"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:22:51 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.75ms)
+Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2610)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Temporibus ipsa voluptatem reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.297034"], ["updated_at", "2020-05-05 16:22:51.297034"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Ratione voluptate non provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.300229"], ["updated_at", "2020-05-05 16:22:51.300229"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "A porro facilis cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.302404"], ["updated_at", "2020-05-05 16:22:51.302404"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Laudantium impedit et amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.303883"], ["updated_at", "2020-05-05 16:22:51.303883"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Nihil id qui natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.306017"], ["updated_at", "2020-05-05 16:22:51.306017"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Libero delectus est iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.308703"], ["updated_at", "2020-05-05 16:22:51.308703"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "provident"], ["description", "Ab voluptatem soluta et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.310780"], ["updated_at", "2020-05-05 16:22:51.310780"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Sunt similique cum quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.312705"], ["updated_at", "2020-05-05 16:22:51.312705"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Voluptatem culpa aut aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.314461"], ["updated_at", "2020-05-05 16:22:51.314461"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Occaecati ut qui voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.316443"], ["updated_at", "2020-05-05 16:22:51.316443"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 13:22:51 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms)
+Completed 422 Unprocessable Entity in 14ms (Views: 8.6ms | ActiveRecord: 0.0ms | Allocations: 934)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Dignissimos blanditiis eveniet ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.371136"], ["updated_at", "2020-05-05 16:22:51.371136"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Nam omnis ipsa velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.374277"], ["updated_at", "2020-05-05 16:22:51.374277"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Sunt in voluptas in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.376671"], ["updated_at", "2020-05-05 16:22:51.376671"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Illum sunt voluptatibus tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.378123"], ["updated_at", "2020-05-05 16:22:51.378123"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Laudantium nihil itaque quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.379778"], ["updated_at", "2020-05-05 16:22:51.379778"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Sequi quisquam neque pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.381141"], ["updated_at", "2020-05-05 16:22:51.381141"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Suscipit et tempora sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.382590"], ["updated_at", "2020-05-05 16:22:51.382590"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Sequi est excepturi voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.384027"], ["updated_at", "2020-05-05 16:22:51.384027"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Rerum pariatur nostrum omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.385811"], ["updated_at", "2020-05-05 16:22:51.385811"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Eligendi at nostrum voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:22:51.387739"], ["updated_at", "2020-05-05 16:22:51.387739"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 13:22:51 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 172)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (124.6ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (80.0ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (101.1ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (106.8ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (101.7ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (97.8ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (89.6ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (19.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Sapiente reiciendis qui neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.498612"], ["updated_at", "2020-05-05 16:31:01.498612"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Esse modi omnis ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.520598"], ["updated_at", "2020-05-05 16:31:01.520598"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempore"], ["description", "Accusantium qui consectetur deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.522357"], ["updated_at", "2020-05-05 16:31:01.522357"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Maxime exercitationem et sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.523938"], ["updated_at", "2020-05-05 16:31:01.523938"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Repellat tempora tempore nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.525391"], ["updated_at", "2020-05-05 16:31:01.525391"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Ipsum eligendi aut dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.526784"], ["updated_at", "2020-05-05 16:31:01.526784"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Sit quo velit ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.528164"], ["updated_at", "2020-05-05 16:31:01.528164"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Corrupti in possimus vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.529557"], ["updated_at", "2020-05-05 16:31:01.529557"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Esse veniam distinctio minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.530945"], ["updated_at", "2020-05-05 16:31:01.530945"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Vel beatae facilis similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.532286"], ["updated_at", "2020-05-05 16:31:01.532286"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Quas fuga molestiae officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.557479"], ["updated_at", "2020-05-05 16:31:01.557479"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Veritatis reiciendis expedita totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.560611"], ["updated_at", "2020-05-05 16:31:01.560611"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Architecto consectetur officiis totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.562703"], ["updated_at", "2020-05-05 16:31:01.562703"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Autem quod id impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.564046"], ["updated_at", "2020-05-05 16:31:01.564046"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Qui quia nisi pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.565482"], ["updated_at", "2020-05-05 16:31:01.565482"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Consequatur consectetur quis ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.566827"], ["updated_at", "2020-05-05 16:31:01.566827"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Culpa facere at modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.568142"], ["updated_at", "2020-05-05 16:31:01.568142"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Eum excepturi sed veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.569438"], ["updated_at", "2020-05-05 16:31:01.569438"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Quia nam totam quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.570755"], ["updated_at", "2020-05-05 16:31:01.570755"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Rem molestiae sint repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:31:01.572004"], ["updated_at", "2020-05-05 16:31:01.572004"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (23.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (127.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (97.9ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (116.8ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (94.9ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (88.1ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (98.1ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (87.8ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Quia vel ducimus animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.493586"], ["updated_at", "2020-05-05 16:32:01.493586"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Magnam reiciendis sit similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.497152"], ["updated_at", "2020-05-05 16:32:01.497152"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Fuga quod voluptatem dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.499179"], ["updated_at", "2020-05-05 16:32:01.499179"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Necessitatibus in tenetur porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.500686"], ["updated_at", "2020-05-05 16:32:01.500686"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Accusamus dolor occaecati in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.513302"], ["updated_at", "2020-05-05 16:32:01.513302"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Explicabo qui tempora voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.515058"], ["updated_at", "2020-05-05 16:32:01.515058"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Maiores sed consectetur quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.516502"], ["updated_at", "2020-05-05 16:32:01.516502"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Debitis dicta est rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.517842"], ["updated_at", "2020-05-05 16:32:01.517842"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Quas atque suscipit ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.519099"], ["updated_at", "2020-05-05 16:32:01.519099"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Voluptatem soluta accusantium dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.520347"], ["updated_at", "2020-05-05 16:32:01.520347"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Grant Bergstrom"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WnLWsZAg5EXjDNKVC6WDreoowCO.T40C9dvOb5fhFSE8qkwv7THR2"], ["created_at", "2020-05-05 16:32:01.534744"], ["updated_at", "2020-05-05 16:32:01.534744"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "similique"], ["description", "Neque iure recusandae totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.545157"], ["updated_at", "2020-05-05 16:32:01.545157"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Quisquam illum inventore minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.549249"], ["updated_at", "2020-05-05 16:32:01.549249"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Eaque ut assumenda molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.551607"], ["updated_at", "2020-05-05 16:32:01.551607"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "Qui nesciunt occaecati doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.553880"], ["updated_at", "2020-05-05 16:32:01.553880"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Laudantium sed quibusdam rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.556667"], ["updated_at", "2020-05-05 16:32:01.556667"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Maxime laboriosam est illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.559215"], ["updated_at", "2020-05-05 16:32:01.559215"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Eum quis voluptatem iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.560696"], ["updated_at", "2020-05-05 16:32:01.560696"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Quam voluptas unde illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.561949"], ["updated_at", "2020-05-05 16:32:01.561949"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "modi"], ["description", "Nam pariatur dolorem maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.563245"], ["updated_at", "2020-05-05 16:32:01.563245"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Eius sed accusamus magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:32:01.564501"], ["updated_at", "2020-05-05 16:32:01.564501"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Nicole Jacobi"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qQL5hE13pUcoLoIxeu02lejcE9LOY9DWLNzzY/eM2zYG6Pz.5Nl1a"], ["created_at", "2020-05-05 16:32:01.567037"], ["updated_at", "2020-05-05 16:32:01.567037"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to ChangeMeetingIdFromUsers (20200505163428)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TEMPORARY TABLE "ausers" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "meeting_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "picture" varchar DEFAULT NULL)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id")[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "ausers" ("id","name","email","password_digest","meeting_id","created_at","updated_at","picture")
+ SELECT "id","name","email","password_digest","meeting_id","created_at","updated_at","picture" FROM "users"[0m
+ [1m[35m (4.5ms)[0m [1m[35mDROP TABLE "users"[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "users" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "meeting_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "picture" varchar DEFAULT NULL, CONSTRAINT "fk_rails_da68fd68e8"
+FOREIGN KEY ("meeting_id")
+ REFERENCES "meetings" ("id")
+)[0m
+ [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id")[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "users" ("id","name","email","password_digest","meeting_id","created_at","updated_at","picture")
+ SELECT "id","name","email","password_digest","meeting_id","created_at","updated_at","picture" FROM "ausers"[0m
+ [1m[35m (0.1ms)[0m [1m[35mDROP TABLE "ausers"[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[36mprimary::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200505163428"]]
+ [1m[35m (114.8ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (153.7ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (83.7ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (94.2ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (89.3ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (108.0ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (154.0ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (90.6ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "provident"], ["description", "At labore vel autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.699336"], ["updated_at", "2020-05-05 16:37:31.699336"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Veniam perspiciatis sit nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.706900"], ["updated_at", "2020-05-05 16:37:31.706900"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Expedita odio quis blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.709015"], ["updated_at", "2020-05-05 16:37:31.709015"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Voluptatem sunt nulla cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.711009"], ["updated_at", "2020-05-05 16:37:31.711009"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "modi"], ["description", "Et sed consequatur neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.713489"], ["updated_at", "2020-05-05 16:37:31.713489"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Est natus molestias voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.727579"], ["updated_at", "2020-05-05 16:37:31.727579"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Dignissimos aliquam reprehenderit iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.729534"], ["updated_at", "2020-05-05 16:37:31.729534"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Aperiam natus odio dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.731294"], ["updated_at", "2020-05-05 16:37:31.731294"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Tempora sed nulla eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.734296"], ["updated_at", "2020-05-05 16:37:31.734296"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minus"], ["description", "Nobis suscipit quam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.738456"], ["updated_at", "2020-05-05 16:37:31.738456"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Fred Roob V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XKiMvGFyzCzmUktPykn/3uPPp9HDRTDgBPUiBm18quqTKI.farsFq"], ["created_at", "2020-05-05 16:37:31.766619"], ["updated_at", "2020-05-05 16:37:31.766619"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Explicabo fugiat aut non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.777810"], ["updated_at", "2020-05-05 16:37:31.777810"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Cupiditate libero maxime deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.781409"], ["updated_at", "2020-05-05 16:37:31.781409"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Et ex voluptatibus sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.784776"], ["updated_at", "2020-05-05 16:37:31.784776"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Ipsum ipsa voluptate aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.786729"], ["updated_at", "2020-05-05 16:37:31.786729"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Nesciunt iste cum tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.788146"], ["updated_at", "2020-05-05 16:37:31.788146"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Praesentium et error minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.789452"], ["updated_at", "2020-05-05 16:37:31.789452"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Sapiente dolorum aut quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.790770"], ["updated_at", "2020-05-05 16:37:31.790770"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Expedita dolorem vitae accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.792084"], ["updated_at", "2020-05-05 16:37:31.792084"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Occaecati tempore deserunt eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.793368"], ["updated_at", "2020-05-05 16:37:31.793368"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Ut amet unde libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:37:31.794686"], ["updated_at", "2020-05-05 16:37:31.794686"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Federico Dickinson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BZeEuhei4IiP1cpT0odxUOSokqOtInnQN29yK.8beAP3kQ3GZ8hWe"], ["created_at", "2020-05-05 16:37:31.798054"], ["updated_at", "2020-05-05 16:37:31.798054"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (136.8ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (91.5ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (132.5ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (94.4ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (87.4ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.9ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (85.9ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (76.1ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Sed saepe deleniti qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.439364"], ["updated_at", "2020-05-05 16:40:05.439364"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Aut error repellat molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.443741"], ["updated_at", "2020-05-05 16:40:05.443741"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Aut et aliquid laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.445529"], ["updated_at", "2020-05-05 16:40:05.445529"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Nobis a eligendi itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.447259"], ["updated_at", "2020-05-05 16:40:05.447259"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Asperiores molestias quia veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.449128"], ["updated_at", "2020-05-05 16:40:05.449128"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Id officiis debitis aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.450716"], ["updated_at", "2020-05-05 16:40:05.450716"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Sunt ex vitae odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.452668"], ["updated_at", "2020-05-05 16:40:05.452668"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "at"], ["description", "Non cupiditate iure et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.453998"], ["updated_at", "2020-05-05 16:40:05.453998"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Repudiandae similique delectus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.455292"], ["updated_at", "2020-05-05 16:40:05.455292"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Cupiditate sit voluptate vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.456573"], ["updated_at", "2020-05-05 16:40:05.456573"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Agnes Cummerata"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qBqX4p9nfBMDTq4iNPsVMe/37KU1gP9Pkl41k2sWZGyGfWZtAYHk."], ["created_at", "2020-05-05 16:40:05.471697"], ["updated_at", "2020-05-05 16:40:05.471697"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magni"], ["description", "Iusto nam ullam ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.482594"], ["updated_at", "2020-05-05 16:40:05.482594"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Est aliquam amet ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.487417"], ["updated_at", "2020-05-05 16:40:05.487417"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Sit dolore laborum in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.489715"], ["updated_at", "2020-05-05 16:40:05.489715"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Et velit distinctio facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.491479"], ["updated_at", "2020-05-05 16:40:05.491479"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Illum et id distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.492832"], ["updated_at", "2020-05-05 16:40:05.492832"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Et quis qui non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.495103"], ["updated_at", "2020-05-05 16:40:05.495103"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Repellat qui sint error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.497279"], ["updated_at", "2020-05-05 16:40:05.497279"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Ex repellat quisquam ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.498672"], ["updated_at", "2020-05-05 16:40:05.498672"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Assumenda vero dolorem sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.499937"], ["updated_at", "2020-05-05 16:40:05.499937"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vero"], ["description", "Enim tenetur expedita dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:40:05.501148"], ["updated_at", "2020-05-05 16:40:05.501148"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Lessie Christiansen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2dHXTbShmIh3pMhk63XJOuf0UD79F6gJpIGGbJL9vIpRO.KftwedG"], ["created_at", "2020-05-05 16:40:05.503651"], ["updated_at", "2020-05-05 16:40:05.503651"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+Migrating to RemoveMeetingIdFromUsers (20200505164423)
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TEMPORARY TABLE "ausers" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "meeting_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "picture" varchar DEFAULT NULL)[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id")[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "ausers" ("id","name","email","password_digest","meeting_id","created_at","updated_at","picture")
+ SELECT "id","name","email","password_digest","meeting_id","created_at","updated_at","picture" FROM "users"[0m
+ [1m[35m (4.6ms)[0m [1m[35mDROP TABLE "users"[0m
+ [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "users" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "email" varchar DEFAULT NULL, "password_digest" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "picture" varchar DEFAULT NULL)[0m
+ [1m[35m (0.1ms)[0m [1m[32mINSERT INTO "users" ("id","name","email","password_digest","created_at","updated_at","picture")
+ SELECT "id","name","email","password_digest","created_at","updated_at","picture" FROM "ausers"[0m
+ [1m[35m (0.2ms)[0m [1m[35mDROP TABLE "ausers"[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[36mprimary::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20200505164423"]]
+ [1m[35m (189.1ms)[0m [1m[36mcommit transaction[0m
+ [1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (176.9ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (104.7ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (120.2ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (83.8ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (111.4ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (81.0ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (88.9ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Earum rem dignissimos et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.203188"], ["updated_at", "2020-05-05 16:46:10.203188"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Eius corporis sit rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.211088"], ["updated_at", "2020-05-05 16:46:10.211088"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Modi consequatur nobis autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.213277"], ["updated_at", "2020-05-05 16:46:10.213277"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Quidem recusandae corrupti rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.216862"], ["updated_at", "2020-05-05 16:46:10.216862"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Qui molestiae asperiores ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.231313"], ["updated_at", "2020-05-05 16:46:10.231313"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Aut dolorem nostrum aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.233307"], ["updated_at", "2020-05-05 16:46:10.233307"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Consequatur totam et ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.235528"], ["updated_at", "2020-05-05 16:46:10.235528"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Maiores porro ut voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.237580"], ["updated_at", "2020-05-05 16:46:10.237580"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minima"], ["description", "Ut tempora ea non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.239260"], ["updated_at", "2020-05-05 16:46:10.239260"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Voluptatem odio exercitationem omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.240936"], ["updated_at", "2020-05-05 16:46:10.240936"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Dr. Raquel Marquardt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WqN1VLpIRZpLgEOtsJjar.XVq5Tmkgd6J.VzWP38Wr3ii6fb5tpsq"], ["created_at", "2020-05-05 16:46:10.258901"], ["updated_at", "2020-05-05 16:46:10.258901"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (22.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Voluptatem quae incidunt sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.270989"], ["updated_at", "2020-05-05 16:46:10.270989"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nemo"], ["description", "Rem quo alias quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.296155"], ["updated_at", "2020-05-05 16:46:10.296155"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Fuga aut laborum eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.298646"], ["updated_at", "2020-05-05 16:46:10.298646"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Aut libero et nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.300168"], ["updated_at", "2020-05-05 16:46:10.300168"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Provident et iste ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.301499"], ["updated_at", "2020-05-05 16:46:10.301499"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Et quo asperiores repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.302895"], ["updated_at", "2020-05-05 16:46:10.302895"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Accusamus voluptas architecto dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.304304"], ["updated_at", "2020-05-05 16:46:10.304304"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Aut dolores nobis amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.305799"], ["updated_at", "2020-05-05 16:46:10.305799"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Quod pariatur ullam non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.307168"], ["updated_at", "2020-05-05 16:46:10.307168"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Mollitia pariatur officia soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:46:10.308443"], ["updated_at", "2020-05-05 16:46:10.308443"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Cathy Nolan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RwQbX20kNfF7MTxMLEE8U.592RJoiD4VNASstt6LodoHcwGS2D0C2"], ["created_at", "2020-05-05 16:46:10.311085"], ["updated_at", "2020-05-05 16:46:10.311085"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (19.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (136.5ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (101.4ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (176.8ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (88.4ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (89.7ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (99.1ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (95.6ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Repudiandae quia unde tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.472035"], ["updated_at", "2020-05-05 16:48:24.472035"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Et dolores dolor eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.479780"], ["updated_at", "2020-05-05 16:48:24.479780"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Animi dolor voluptatum a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.481561"], ["updated_at", "2020-05-05 16:48:24.481561"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (10.9ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Velit iste dolorem omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.483579"], ["updated_at", "2020-05-05 16:48:24.483579"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Voluptate consequatur nisi voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.496775"], ["updated_at", "2020-05-05 16:48:24.496775"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Ipsam et qui autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.498396"], ["updated_at", "2020-05-05 16:48:24.498396"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Qui tenetur consequuntur nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.499749"], ["updated_at", "2020-05-05 16:48:24.499749"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Ut autem iure necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.501085"], ["updated_at", "2020-05-05 16:48:24.501085"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Facilis quo repudiandae mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.502424"], ["updated_at", "2020-05-05 16:48:24.502424"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Harum necessitatibus ut ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.503731"], ["updated_at", "2020-05-05 16:48:24.503731"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Janey Langworth I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Hc/mz0pucq3ISVJ.nPTCLeM6bdQxZbRJGHzPjO/XIChFOyRgg2bge"], ["created_at", "2020-05-05 16:48:24.518398"], ["updated_at", "2020-05-05 16:48:24.518398"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Voluptatem totam autem dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.531115"], ["updated_at", "2020-05-05 16:48:24.531115"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Dolorum culpa nihil deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.535128"], ["updated_at", "2020-05-05 16:48:24.535128"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Ut quibusdam rem odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.537744"], ["updated_at", "2020-05-05 16:48:24.537744"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Amet est aut cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.539292"], ["updated_at", "2020-05-05 16:48:24.539292"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Magnam aut occaecati quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.540707"], ["updated_at", "2020-05-05 16:48:24.540707"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "A rerum necessitatibus reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.542352"], ["updated_at", "2020-05-05 16:48:24.542352"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Et est recusandae at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.544665"], ["updated_at", "2020-05-05 16:48:24.544665"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Doloribus architecto incidunt perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.546165"], ["updated_at", "2020-05-05 16:48:24.546165"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quae"], ["description", "Voluptas similique repudiandae modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.547482"], ["updated_at", "2020-05-05 16:48:24.547482"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Aut maxime sit ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:48:24.548851"], ["updated_at", "2020-05-05 16:48:24.548851"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Xiomara Dare"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JEMLLixe8qDPCNrYtBfUj.z5wIWpdr9hLzMFBqjH2q0ub4WHwbVmK"], ["created_at", "2020-05-05 16:48:24.551487"], ["updated_at", "2020-05-05 16:48:24.551487"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (195.9ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (99.8ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (103.4ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (104.6ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (169.9ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (126.9ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (1.1ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (1.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (100.4ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (15.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Sit praesentium iure quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.402673"], ["updated_at", "2020-05-05 16:50:29.402673"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Nulla facilis ullam quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.421253"], ["updated_at", "2020-05-05 16:50:29.421253"], ["created_by", "1"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Eaque iure voluptatem minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.423159"], ["updated_at", "2020-05-05 16:50:29.423159"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Eaque ex dolores reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.425607"], ["updated_at", "2020-05-05 16:50:29.425607"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Distinctio porro error qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.438122"], ["updated_at", "2020-05-05 16:50:29.438122"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Consequatur eius ut omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.439559"], ["updated_at", "2020-05-05 16:50:29.439559"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Itaque laudantium soluta ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.440826"], ["updated_at", "2020-05-05 16:50:29.440826"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quas"], ["description", "Quod illum fugiat libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.442095"], ["updated_at", "2020-05-05 16:50:29.442095"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Est iusto eligendi totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.443418"], ["updated_at", "2020-05-05 16:50:29.443418"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Voluptatem tenetur dolores eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.444811"], ["updated_at", "2020-05-05 16:50:29.444811"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Hermine Mayer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lsSw40FzlfvCaY993diV9ebCR45LpIhb4KKse.yCwOIX0qI9zFaNG"], ["created_at", "2020-05-05 16:50:29.461010"], ["updated_at", "2020-05-05 16:50:29.461010"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:50:29 -0300
+Processing by MeetsController#index as HTML
+Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.0ms | Allocations: 408)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Quia ipsum qui corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.532133"], ["updated_at", "2020-05-05 16:50:29.532133"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Dolores doloribus magnam officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.537142"], ["updated_at", "2020-05-05 16:50:29.537142"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Nihil ut ab cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.539717"], ["updated_at", "2020-05-05 16:50:29.539717"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Voluptatem itaque distinctio modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.541169"], ["updated_at", "2020-05-05 16:50:29.541169"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempora"], ["description", "Facere voluptas ea a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.543753"], ["updated_at", "2020-05-05 16:50:29.543753"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Rerum eum tempore dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.547056"], ["updated_at", "2020-05-05 16:50:29.547056"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Aperiam deserunt autem consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.550551"], ["updated_at", "2020-05-05 16:50:29.550551"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Velit ipsam repellendus perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.553377"], ["updated_at", "2020-05-05 16:50:29.553377"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Sunt occaecati repellat minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.556581"], ["updated_at", "2020-05-05 16:50:29.556581"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Quaerat nobis unde et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:50:29.559422"], ["updated_at", "2020-05-05 16:50:29.559422"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Season Heidenreich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FqTC5D6wWzb9tBbuvKMJye9utwezvAo/278erbrRd/O3hU0tJ8fUe"], ["created_at", "2020-05-05 16:50:29.564787"], ["updated_at", "2020-05-05 16:50:29.564787"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:50:29 -0300
+Processing by MeetsController#index as HTML
+Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms | Allocations: 217)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (151.0ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (108.3ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (94.0ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (81.7ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (79.9ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (91.3ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (78.9ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Tempora odio blanditiis quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.883904"], ["updated_at", "2020-05-05 16:52:25.883904"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Corporis aliquam non beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.887767"], ["updated_at", "2020-05-05 16:52:25.887767"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Ut tempore facere ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.890049"], ["updated_at", "2020-05-05 16:52:25.890049"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Nam consequatur molestiae est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.891942"], ["updated_at", "2020-05-05 16:52:25.891942"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Blanditiis nam et hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.905469"], ["updated_at", "2020-05-05 16:52:25.905469"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "hic"], ["description", "Dolorem dolor similique facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.908196"], ["updated_at", "2020-05-05 16:52:25.908196"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Reprehenderit in magnam nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.909863"], ["updated_at", "2020-05-05 16:52:25.909863"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Nesciunt rerum et a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.911201"], ["updated_at", "2020-05-05 16:52:25.911201"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Occaecati eligendi et blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.912778"], ["updated_at", "2020-05-05 16:52:25.912778"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Neque laborum dolor nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.914434"], ["updated_at", "2020-05-05 16:52:25.914434"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Stevie Lemke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DQRpMVVC0COvN0h5cuBrD.hJ.djVPzfP/379vL4jp7cj0qGT8oVvK"], ["created_at", "2020-05-05 16:52:25.930665"], ["updated_at", "2020-05-05 16:52:25.930665"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (43.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Et ut voluptatibus tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.981903"], ["updated_at", "2020-05-05 16:52:25.981903"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Autem est omnis exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.986814"], ["updated_at", "2020-05-05 16:52:25.986814"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Porro ipsa voluptatem perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.989084"], ["updated_at", "2020-05-05 16:52:25.989084"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Officiis consequuntur sunt modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.990523"], ["updated_at", "2020-05-05 16:52:25.990523"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Veritatis natus aperiam accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.992011"], ["updated_at", "2020-05-05 16:52:25.992011"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Sit ipsum ut consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.993700"], ["updated_at", "2020-05-05 16:52:25.993700"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Incidunt occaecati dicta ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.995339"], ["updated_at", "2020-05-05 16:52:25.995339"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Nihil minus ea aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.996882"], ["updated_at", "2020-05-05 16:52:25.996882"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vero"], ["description", "Illo nemo pariatur ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.998330"], ["updated_at", "2020-05-05 16:52:25.998330"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Nostrum provident eius sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:52:25.999788"], ["updated_at", "2020-05-05 16:52:25.999788"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Angelina Weissnat"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WwUqWJHhnKfLXtF5KI0zievr/lcN/cgImYghndsigLISMWB5CmvUq"], ["created_at", "2020-05-05 16:52:26.002579"], ["updated_at", "2020-05-05 16:52:26.002579"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (5.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (88.9ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (1.1ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (108.2ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (111.1ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (115.4ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (87.4ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (97.9ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (64.0ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (70.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Sit aliquam soluta quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.411270"], ["updated_at", "2020-05-05 16:53:02.411270"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Minus illum nulla ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.487095"], ["updated_at", "2020-05-05 16:53:02.487095"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Qui qui error voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.492936"], ["updated_at", "2020-05-05 16:53:02.492936"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Sapiente possimus eligendi qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.497438"], ["updated_at", "2020-05-05 16:53:02.497438"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Pariatur sit corrupti porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.502134"], ["updated_at", "2020-05-05 16:53:02.502134"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Doloribus sed qui non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.522563"], ["updated_at", "2020-05-05 16:53:02.522563"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nisi"], ["description", "Eius adipisci officia consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.525544"], ["updated_at", "2020-05-05 16:53:02.525544"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Aperiam aut delectus nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.527902"], ["updated_at", "2020-05-05 16:53:02.527902"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Vero magnam aspernatur nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.529846"], ["updated_at", "2020-05-05 16:53:02.529846"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Dolorem officia velit id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.531875"], ["updated_at", "2020-05-05 16:53:02.531875"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Shaun Haag"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$S2kSuYBd5fmmrnIRMFM2K.xp1vYBiIzAUwXoqRJMmCPa5YKx7tgcK"], ["created_at", "2020-05-05 16:53:02.548852"], ["updated_at", "2020-05-05 16:53:02.548852"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minus"], ["description", "Labore ipsum est est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.566462"], ["updated_at", "2020-05-05 16:53:02.566462"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Dolore architecto voluptatum non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.569682"], ["updated_at", "2020-05-05 16:53:02.569682"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Dolorem illo aut est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.572850"], ["updated_at", "2020-05-05 16:53:02.572850"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Deleniti veniam ipsam voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.576097"], ["updated_at", "2020-05-05 16:53:02.576097"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Ut quidem nemo et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.577733"], ["updated_at", "2020-05-05 16:53:02.577733"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Omnis sit pariatur magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.579020"], ["updated_at", "2020-05-05 16:53:02.579020"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Et modi enim nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.580291"], ["updated_at", "2020-05-05 16:53:02.580291"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Est numquam qui dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.581946"], ["updated_at", "2020-05-05 16:53:02.581946"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Corporis dolorum tenetur optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.584519"], ["updated_at", "2020-05-05 16:53:02.584519"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Earum maiores excepturi at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:02.586956"], ["updated_at", "2020-05-05 16:53:02.586956"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Martin Rippin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$c6zIYYbGOYHpnXFhygzDsuBc7eu3hTU4YbJmP1FZY4D3PEIfeh5My"], ["created_at", "2020-05-05 16:53:02.589806"], ["updated_at", "2020-05-05 16:53:02.589806"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (54.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (122.8ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (83.9ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (94.6ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (80.8ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (80.5ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (89.5ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (113.2ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Dolorem eos tempore assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.754002"], ["updated_at", "2020-05-05 16:53:46.754002"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Labore omnis voluptatem dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.757280"], ["updated_at", "2020-05-05 16:53:46.757280"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "optio"], ["description", "Debitis distinctio porro quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.758820"], ["updated_at", "2020-05-05 16:53:46.758820"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Dolores dicta consequatur rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.760147"], ["updated_at", "2020-05-05 16:53:46.760147"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "A assumenda porro ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.761450"], ["updated_at", "2020-05-05 16:53:46.761450"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Reiciendis asperiores quia voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.762763"], ["updated_at", "2020-05-05 16:53:46.762763"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Minus beatae veritatis repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.764225"], ["updated_at", "2020-05-05 16:53:46.764225"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "In sunt repellat ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.765516"], ["updated_at", "2020-05-05 16:53:46.765516"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "amet"], ["description", "Ipsam dicta neque sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.766853"], ["updated_at", "2020-05-05 16:53:46.766853"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Deserunt suscipit voluptatem officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.768139"], ["updated_at", "2020-05-05 16:53:46.768139"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Herb McCullough"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aKAvvuoQzAXZFzG4prBTYuVcT5bl1Qxa7leAOiAVp5nZ0EkwakXoK"], ["created_at", "2020-05-05 16:53:46.782132"], ["updated_at", "2020-05-05 16:53:46.782132"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:53:46 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.73ms)
+Completed 200 OK in 13ms (Views: 10.2ms | ActiveRecord: 0.4ms | Allocations: 4084)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (22.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Repellendus dolorem aut ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.868161"], ["updated_at", "2020-05-05 16:53:46.868161"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Repellendus quia aut voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.871265"], ["updated_at", "2020-05-05 16:53:46.871265"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Non qui sapiente ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.872885"], ["updated_at", "2020-05-05 16:53:46.872885"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Maiores eveniet eius aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.874878"], ["updated_at", "2020-05-05 16:53:46.874878"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Voluptatem quisquam et est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.877932"], ["updated_at", "2020-05-05 16:53:46.877932"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Omnis eos consequatur animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.879644"], ["updated_at", "2020-05-05 16:53:46.879644"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magni"], ["description", "Et optio repudiandae quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.881337"], ["updated_at", "2020-05-05 16:53:46.881337"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Sed dolores quia error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.882982"], ["updated_at", "2020-05-05 16:53:46.882982"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Dolorem eligendi dolor enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.884371"], ["updated_at", "2020-05-05 16:53:46.884371"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Ut est similique nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:53:46.885702"], ["updated_at", "2020-05-05 16:53:46.885702"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Susie Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BbwJrgk7fJfNBSoxG19Tc.HGG6Yxv8hOptykZVN3zwzTkxof15Jsa"], ["created_at", "2020-05-05 16:53:46.888376"], ["updated_at", "2020-05-05 16:53:46.888376"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:53:46 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.07ms)
+Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms | Allocations: 2844)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (115.1ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (100.7ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (127.6ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (122.1ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (89.7ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (106.4ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (205.3ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempore"], ["description", "Rerum ut tempore est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.115007"], ["updated_at", "2020-05-05 16:57:27.115007"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Accusamus et voluptas sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.122323"], ["updated_at", "2020-05-05 16:57:27.122323"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Ea nisi eos voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.124253"], ["updated_at", "2020-05-05 16:57:27.124253"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laboriosam"], ["description", "Rem et nam autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.125896"], ["updated_at", "2020-05-05 16:57:27.125896"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Quae maxime perspiciatis cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.138263"], ["updated_at", "2020-05-05 16:57:27.138263"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Nihil quaerat provident libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.139963"], ["updated_at", "2020-05-05 16:57:27.139963"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsam"], ["description", "Deleniti impedit reprehenderit harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.141268"], ["updated_at", "2020-05-05 16:57:27.141268"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Ratione ducimus aut quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.142617"], ["updated_at", "2020-05-05 16:57:27.142617"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Veritatis pariatur cupiditate quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.144005"], ["updated_at", "2020-05-05 16:57:27.144005"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Et illum velit magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.145319"], ["updated_at", "2020-05-05 16:57:27.145319"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Miguel Wisozk"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$catrQ1RQbtmvnHbgbPJOy.CtTIu2CgsD07aSFmBCxBU8y1Vqbezhq"], ["created_at", "2020-05-05 16:57:27.159826"], ["updated_at", "2020-05-05 16:57:27.159826"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:57:27 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.48ms)
+Completed 200 OK in 12ms (Views: 9.3ms | ActiveRecord: 0.3ms | Allocations: 4083)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Dolorem qui consequatur ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.231083"], ["updated_at", "2020-05-05 16:57:27.231083"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Explicabo eaque aliquid in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.233898"], ["updated_at", "2020-05-05 16:57:27.233898"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Quibusdam ullam facere quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.235318"], ["updated_at", "2020-05-05 16:57:27.235318"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Similique dolores eaque ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.236883"], ["updated_at", "2020-05-05 16:57:27.236883"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Aperiam fugiat est eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.238472"], ["updated_at", "2020-05-05 16:57:27.238472"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Placeat iure laborum enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.240596"], ["updated_at", "2020-05-05 16:57:27.240596"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Magni maxime nostrum mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.242391"], ["updated_at", "2020-05-05 16:57:27.242391"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quas"], ["description", "Rem repudiandae qui ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.243738"], ["updated_at", "2020-05-05 16:57:27.243738"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Quo et architecto officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.245037"], ["updated_at", "2020-05-05 16:57:27.245037"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Velit blanditiis exercitationem nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:57:27.246290"], ["updated_at", "2020-05-05 16:57:27.246290"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Rodrick Welch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XVite3BtbVicxYQYJIB4.erTaEjS28Op5T1sU0hCgiDFlzN9PrSua"], ["created_at", "2020-05-05 16:57:27.248869"], ["updated_at", "2020-05-05 16:57:27.248869"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:57:27 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.33ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2845)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (83.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (108.7ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (139.3ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (127.9ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (113.5ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (98.2ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (88.4ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Dignissimos est qui nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.761964"], ["updated_at", "2020-05-05 16:58:49.761964"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Rerum in sint animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.765880"], ["updated_at", "2020-05-05 16:58:49.765880"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laboriosam"], ["description", "Asperiores cum nisi aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.768116"], ["updated_at", "2020-05-05 16:58:49.768116"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Dolor ut nisi quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.769992"], ["updated_at", "2020-05-05 16:58:49.769992"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Non sed pariatur voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.783025"], ["updated_at", "2020-05-05 16:58:49.783025"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minima"], ["description", "Quasi aut dolor vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.784784"], ["updated_at", "2020-05-05 16:58:49.784784"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Quis ullam ut doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.786519"], ["updated_at", "2020-05-05 16:58:49.786519"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "At ipsam natus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.788137"], ["updated_at", "2020-05-05 16:58:49.788137"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Omnis eligendi perferendis voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.789624"], ["updated_at", "2020-05-05 16:58:49.789624"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Doloremque fugit corporis dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.791094"], ["updated_at", "2020-05-05 16:58:49.791094"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Fred Mayer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.UFwQzNqnx1DEgkjAtaU8uQtHSGYH.XwU2EQsQLbXrc2oiFWbnFeC"], ["created_at", "2020-05-05 16:58:49.805639"], ["updated_at", "2020-05-05 16:58:49.805639"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:58:49 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.27ms)
+Completed 200 OK in 12ms (Views: 9.2ms | ActiveRecord: 0.4ms | Allocations: 4083)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Nihil qui voluptatem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.873760"], ["updated_at", "2020-05-05 16:58:49.873760"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "Non non molestiae est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.877060"], ["updated_at", "2020-05-05 16:58:49.877060"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "amet"], ["description", "Velit recusandae iste magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.879736"], ["updated_at", "2020-05-05 16:58:49.879736"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Autem voluptatem sint recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.881656"], ["updated_at", "2020-05-05 16:58:49.881656"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "modi"], ["description", "Nihil iste officiis tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.883292"], ["updated_at", "2020-05-05 16:58:49.883292"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Maiores sunt fugiat architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.884721"], ["updated_at", "2020-05-05 16:58:49.884721"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Reiciendis quis sit autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.886161"], ["updated_at", "2020-05-05 16:58:49.886161"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Repellendus ad consequatur sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.887838"], ["updated_at", "2020-05-05 16:58:49.887838"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Officia fugiat eligendi itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.889236"], ["updated_at", "2020-05-05 16:58:49.889236"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Deserunt voluptas sint odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 16:58:49.890619"], ["updated_at", "2020-05-05 16:58:49.890619"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Noe Sawayn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LDy2qVBd6jfSZqJQpTeqIufdJhNWABQrRBZy1AgwooVY3hjCN6IVy"], ["created_at", "2020-05-05 16:58:49.893398"], ["updated_at", "2020-05-05 16:58:49.893398"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:58:49 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.59ms)
+Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2845)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (84.4ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (101.1ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (143.7ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (97.3ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (106.4ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (97.2ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (97.2ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Qui et quia labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.069841"], ["updated_at", "2020-05-05 17:01:33.069841"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Voluptas sed repellendus autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.074133"], ["updated_at", "2020-05-05 17:01:33.074133"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Consectetur inventore dolor et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.076353"], ["updated_at", "2020-05-05 17:01:33.076353"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quas"], ["description", "Nam dolores laborum accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.078276"], ["updated_at", "2020-05-05 17:01:33.078276"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Repellendus qui nam voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.091499"], ["updated_at", "2020-05-05 17:01:33.091499"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Ipsum voluptates eos voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.093379"], ["updated_at", "2020-05-05 17:01:33.093379"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nisi"], ["description", "Consequatur aliquid quis omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.094726"], ["updated_at", "2020-05-05 17:01:33.094726"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Ipsam omnis explicabo aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.096039"], ["updated_at", "2020-05-05 17:01:33.096039"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Minus a voluptatibus quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.097367"], ["updated_at", "2020-05-05 17:01:33.097367"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Tenetur ex sapiente illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.098978"], ["updated_at", "2020-05-05 17:01:33.098978"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Lonna Schuppe IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$diSnsBS3R5LGPlYgwc108O01ijX9cesYoSij2YjCC/BwBm/dv69AG"], ["created_at", "2020-05-05 17:01:33.113311"], ["updated_at", "2020-05-05 17:01:33.113311"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Impedit rerum est porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.124205"], ["updated_at", "2020-05-05 17:01:33.124205"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Consequatur voluptatibus dolor reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.127490"], ["updated_at", "2020-05-05 17:01:33.127490"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Eligendi fugit doloremque sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.129729"], ["updated_at", "2020-05-05 17:01:33.129729"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "possimus"], ["description", "Asperiores ut nam esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.131135"], ["updated_at", "2020-05-05 17:01:33.131135"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Aut ut ullam labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.132525"], ["updated_at", "2020-05-05 17:01:33.132525"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Ut non alias ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.133896"], ["updated_at", "2020-05-05 17:01:33.133896"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Ut consequatur atque sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.135230"], ["updated_at", "2020-05-05 17:01:33.135230"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "a"], ["description", "Sed vitae est repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.136565"], ["updated_at", "2020-05-05 17:01:33.136565"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ab"], ["description", "Exercitationem qui dolor ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.138018"], ["updated_at", "2020-05-05 17:01:33.138018"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Ipsum molestiae et iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:01:33.139459"], ["updated_at", "2020-05-05 17:01:33.139459"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Herminia Blanda"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bt.VGY9n7Cz96fiIhVWDV.Y.Za/BzjMWohlCBzrkkT0PpBJg3aX1G"], ["created_at", "2020-05-05 17:01:33.142200"], ["updated_at", "2020-05-05 17:01:33.142200"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (133.5ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (156.8ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (152.6ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (100.0ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (97.0ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (114.3ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (79.6ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Reiciendis sit dolor iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.881198"], ["updated_at", "2020-05-05 17:02:15.881198"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Autem numquam dolorum perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.888021"], ["updated_at", "2020-05-05 17:02:15.888021"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Nesciunt unde neque optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.890190"], ["updated_at", "2020-05-05 17:02:15.890190"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Repellendus vel qui deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.892066"], ["updated_at", "2020-05-05 17:02:15.892066"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Inventore doloremque laudantium architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.905041"], ["updated_at", "2020-05-05 17:02:15.905041"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Rerum sit nesciunt aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.906911"], ["updated_at", "2020-05-05 17:02:15.906911"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Omnis aut veritatis occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.908451"], ["updated_at", "2020-05-05 17:02:15.908451"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Rerum laborum totam in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.910064"], ["updated_at", "2020-05-05 17:02:15.910064"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Ratione fuga culpa officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.911564"], ["updated_at", "2020-05-05 17:02:15.911564"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "In et autem id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.913043"], ["updated_at", "2020-05-05 17:02:15.913043"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Denita Hackett"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$va2fi9IpVpqpko22H.e2eORXaTF7SPu4KRFi0vZ6eW0eUOqkRL4gi"], ["created_at", "2020-05-05 17:02:15.927429"], ["updated_at", "2020-05-05 17:02:15.927429"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Magni reiciendis qui consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.938134"], ["updated_at", "2020-05-05 17:02:15.938134"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Iste libero vitae dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.941838"], ["updated_at", "2020-05-05 17:02:15.941838"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Odit minima sed sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.944066"], ["updated_at", "2020-05-05 17:02:15.944066"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Placeat consequatur dolor nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.945576"], ["updated_at", "2020-05-05 17:02:15.945576"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Consequatur iusto cum eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.947003"], ["updated_at", "2020-05-05 17:02:15.947003"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Fuga et quis dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.948392"], ["updated_at", "2020-05-05 17:02:15.948392"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Libero harum magni recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.950247"], ["updated_at", "2020-05-05 17:02:15.950247"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Vel excepturi odio autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.952784"], ["updated_at", "2020-05-05 17:02:15.952784"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Et quo fuga modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.954309"], ["updated_at", "2020-05-05 17:02:15.954309"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Quasi veritatis consectetur possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:15.955787"], ["updated_at", "2020-05-05 17:02:15.955787"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Eugenio Abbott I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dHzx3L1GAKPBxo9An9tJy.Gsf1zJ0gOQxgv3ml5sQdSu8KsvIVKrW"], ["created_at", "2020-05-05 17:02:15.958654"], ["updated_at", "2020-05-05 17:02:15.958654"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (121.9ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (116.0ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (94.4ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (81.5ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (83.3ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (83.1ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (67.8ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Deleniti voluptatem qui vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.389774"], ["updated_at", "2020-05-05 17:02:45.389774"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Praesentium odio ullam deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.397258"], ["updated_at", "2020-05-05 17:02:45.397258"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Eius fuga excepturi libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.399560"], ["updated_at", "2020-05-05 17:02:45.399560"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Autem dolorum deleniti debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.401496"], ["updated_at", "2020-05-05 17:02:45.401496"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Vitae quos sit reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.414153"], ["updated_at", "2020-05-05 17:02:45.414153"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Corporis qui sed ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.416015"], ["updated_at", "2020-05-05 17:02:45.416015"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Tenetur quia quo praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.417441"], ["updated_at", "2020-05-05 17:02:45.417441"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Cum rerum non veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.418756"], ["updated_at", "2020-05-05 17:02:45.418756"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Velit sit et laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.420121"], ["updated_at", "2020-05-05 17:02:45.420121"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Quo dolorem dolor quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.421452"], ["updated_at", "2020-05-05 17:02:45.421452"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Alla Bins"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kVLId7G4.g8GIF18ttBl6Ohxm27mZZ25rDzhu4unltRML6cqTNWxS"], ["created_at", "2020-05-05 17:02:45.435662"], ["updated_at", "2020-05-05 17:02:45.435662"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:02:45 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.57ms)
+Completed 200 OK in 12ms (Views: 9.6ms | ActiveRecord: 0.3ms | Allocations: 4084)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Magni aut neque praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.497808"], ["updated_at", "2020-05-05 17:02:45.497808"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Et sapiente numquam incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.500996"], ["updated_at", "2020-05-05 17:02:45.500996"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Odit rerum odio sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.503408"], ["updated_at", "2020-05-05 17:02:45.503408"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "At fugiat aut necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.504961"], ["updated_at", "2020-05-05 17:02:45.504961"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Laborum cum eos similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.506268"], ["updated_at", "2020-05-05 17:02:45.506268"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Rerum rerum dicta pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.507690"], ["updated_at", "2020-05-05 17:02:45.507690"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Libero temporibus distinctio suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.509381"], ["updated_at", "2020-05-05 17:02:45.509381"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Non impedit aut id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.511752"], ["updated_at", "2020-05-05 17:02:45.511752"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Facilis dolorem voluptatem ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.513685"], ["updated_at", "2020-05-05 17:02:45.513685"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Sunt libero quod voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:02:45.516112"], ["updated_at", "2020-05-05 17:02:45.516112"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Miss Robbie Fritsch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QxixfQmlA/FhFgBInqwWQu/0T/8iHZ1Ll1m/WF69ctP3ZG/HaFDJa"], ["created_at", "2020-05-05 17:02:45.518904"], ["updated_at", "2020-05-05 17:02:45.518904"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:02:45 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.42ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2844)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (151.1ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (150.4ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (111.4ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (89.7ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (72.7ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (188.8ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (80.4ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Ea magnam ut ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.672363"], ["updated_at", "2020-05-05 17:03:38.672363"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Sint molestias at expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.679582"], ["updated_at", "2020-05-05 17:03:38.679582"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Qui incidunt dolorem atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.681662"], ["updated_at", "2020-05-05 17:03:38.681662"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Quod corrupti nisi dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.683963"], ["updated_at", "2020-05-05 17:03:38.683963"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Cum dolores deleniti atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.696064"], ["updated_at", "2020-05-05 17:03:38.696064"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illum"], ["description", "Consectetur hic officia est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.697880"], ["updated_at", "2020-05-05 17:03:38.697880"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Nihil dolores excepturi minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.699456"], ["updated_at", "2020-05-05 17:03:38.699456"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Asperiores non accusantium aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.700873"], ["updated_at", "2020-05-05 17:03:38.700873"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Sequi sit corrupti officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.702317"], ["updated_at", "2020-05-05 17:03:38.702317"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iste"], ["description", "Ut tenetur omnis numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.703725"], ["updated_at", "2020-05-05 17:03:38.703725"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mellissa Padberg II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZuKBZUhjySvEKEctbavT8OpMgYNaCAbSMfAVgW6yOhNpiuzvEIou6"], ["created_at", "2020-05-05 17:03:38.717845"], ["updated_at", "2020-05-05 17:03:38.717845"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:03:38 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.18ms)
+Completed 200 OK in 12ms (Views: 9.0ms | ActiveRecord: 0.3ms | Allocations: 4086)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Nemo enim quos illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.797521"], ["updated_at", "2020-05-05 17:03:38.797521"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Harum cumque qui vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.800954"], ["updated_at", "2020-05-05 17:03:38.800954"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Sint eius minus voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.803342"], ["updated_at", "2020-05-05 17:03:38.803342"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempore"], ["description", "Quia blanditiis vitae voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.804966"], ["updated_at", "2020-05-05 17:03:38.804966"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Voluptas quae dolore voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.806312"], ["updated_at", "2020-05-05 17:03:38.806312"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Laboriosam veritatis et qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.807612"], ["updated_at", "2020-05-05 17:03:38.807612"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Fugit vero fugiat odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.809212"], ["updated_at", "2020-05-05 17:03:38.809212"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Quo quas repellat rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.811287"], ["updated_at", "2020-05-05 17:03:38.811287"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Impedit minima sed error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.812705"], ["updated_at", "2020-05-05 17:03:38.812705"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Ratione quam sint rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.813979"], ["updated_at", "2020-05-05 17:03:38.813979"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Logan Lynch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jRmrNdicuiy9mv2vAEXFYe62d0EkbiWISX/2QH.QjypfWSMjEuPB2"], ["created_at", "2020-05-05 17:03:38.816643"], ["updated_at", "2020-05-05 17:03:38.816643"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:03:38 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.32ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2843)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Aut illo sunt vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.833457"], ["updated_at", "2020-05-05 17:03:38.833457"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Et vero temporibus harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.837204"], ["updated_at", "2020-05-05 17:03:38.837204"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Optio minus sit aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.838877"], ["updated_at", "2020-05-05 17:03:38.838877"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Voluptates praesentium maxime est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.840271"], ["updated_at", "2020-05-05 17:03:38.840271"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Accusamus velit sit est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.841602"], ["updated_at", "2020-05-05 17:03:38.841602"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Repellat optio qui possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.842888"], ["updated_at", "2020-05-05 17:03:38.842888"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Quia sit quisquam aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.844497"], ["updated_at", "2020-05-05 17:03:38.844497"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Explicabo tempora aut omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.846257"], ["updated_at", "2020-05-05 17:03:38.846257"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Quod natus eos maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.848404"], ["updated_at", "2020-05-05 17:03:38.848404"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Perspiciatis quis nihil et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.849841"], ["updated_at", "2020-05-05 17:03:38.849841"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Annita Gislason"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wlt30E9eWafOzNTftRD4seLh3IbXSACHpfUSLD3tEF0yrMJjrvLo6"], ["created_at", "2020-05-05 17:03:38.852840"], ["updated_at", "2020-05-05 17:03:38.852840"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:03:38 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.49ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:03:38 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 4.6ms | ActiveRecord: 0.0ms | Allocations: 690)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsam"], ["description", "Qui vel animi dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.905043"], ["updated_at", "2020-05-05 17:03:38.905043"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Culpa libero in deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.908975"], ["updated_at", "2020-05-05 17:03:38.908975"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illum"], ["description", "Aspernatur quas ut id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.911151"], ["updated_at", "2020-05-05 17:03:38.911151"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Occaecati sunt velit saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.912540"], ["updated_at", "2020-05-05 17:03:38.912540"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Sit animi blanditiis enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.913846"], ["updated_at", "2020-05-05 17:03:38.913846"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Ut et modi quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.915200"], ["updated_at", "2020-05-05 17:03:38.915200"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Recusandae et nostrum minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.916459"], ["updated_at", "2020-05-05 17:03:38.916459"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Suscipit voluptatem possimus animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.917830"], ["updated_at", "2020-05-05 17:03:38.917830"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Accusamus nam necessitatibus voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.919428"], ["updated_at", "2020-05-05 17:03:38.919428"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Non deserunt ipsam dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.920698"], ["updated_at", "2020-05-05 17:03:38.920698"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Teisha Howell Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$85QV.Zf7gZmCeG4vPHZtJ.io5lxbIni8gMKt1wbOE0XRTS9T7PLx."], ["created_at", "2020-05-05 17:03:38.923281"], ["updated_at", "2020-05-05 17:03:38.923281"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:03:38 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.2ms)
+Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.3ms | Allocations: 2843)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:03:38 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 422 Unprocessable Entity in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Quasi maxime tempore occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.942954"], ["updated_at", "2020-05-05 17:03:38.942954"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Voluptates voluptas porro id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.946191"], ["updated_at", "2020-05-05 17:03:38.946191"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Aut et veritatis dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.948679"], ["updated_at", "2020-05-05 17:03:38.948679"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Occaecati quia sint beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.950159"], ["updated_at", "2020-05-05 17:03:38.950159"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Rerum dicta quos dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.951585"], ["updated_at", "2020-05-05 17:03:38.951585"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Saepe rerum ab voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.952874"], ["updated_at", "2020-05-05 17:03:38.952874"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Non nisi repellat dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.954130"], ["updated_at", "2020-05-05 17:03:38.954130"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odio"], ["description", "Impedit nihil laudantium occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.955405"], ["updated_at", "2020-05-05 17:03:38.955405"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Libero aut dignissimos omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.956687"], ["updated_at", "2020-05-05 17:03:38.956687"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Numquam deserunt vel atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.958032"], ["updated_at", "2020-05-05 17:03:38.958032"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mrs. Haywood Dickens"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$93gLMf3bgSCdu0de3Y/bouaGYnEHugTxGfbQQnZwCN8xr.irFlutu"], ["created_at", "2020-05-05 17:03:38.960712"], ["updated_at", "2020-05-05 17:03:38.960712"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:03:38 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.04ms)
+Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms | Allocations: 2845)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:03:38 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 422 Unprocessable Entity in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Illo aut dolorem sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.980351"], ["updated_at", "2020-05-05 17:03:38.980351"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Nam quia est fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.983313"], ["updated_at", "2020-05-05 17:03:38.983313"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Aspernatur quam nulla et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.985124"], ["updated_at", "2020-05-05 17:03:38.985124"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Corrupti dolor commodi repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.987243"], ["updated_at", "2020-05-05 17:03:38.987243"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Quod delectus omnis alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.989129"], ["updated_at", "2020-05-05 17:03:38.989129"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Facilis autem error non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.990467"], ["updated_at", "2020-05-05 17:03:38.990467"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Autem quo sed consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.991783"], ["updated_at", "2020-05-05 17:03:38.991783"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "In ab aut consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.993058"], ["updated_at", "2020-05-05 17:03:38.993058"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Voluptatibus et culpa provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.994344"], ["updated_at", "2020-05-05 17:03:38.994344"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempore"], ["description", "Nemo in id quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:03:38.995668"], ["updated_at", "2020-05-05 17:03:38.995668"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Miss Shela Feil"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j0Cqb.jYK//7uvrNz.9RPO2c8RnxcJgUoARrZmj.vrkzUDQRr.4Q6"], ["created_at", "2020-05-05 17:03:38.998406"], ["updated_at", "2020-05-05 17:03:38.998406"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:03:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.83ms)
+Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.1ms | Allocations: 2842)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:03:39 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (133.2ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (108.6ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (85.4ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (71.7ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (159.5ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (78.1ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (89.3ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.9ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.8ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Ipsam suscipit sequi velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.254021"], ["updated_at", "2020-05-05 17:04:24.254021"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Vitae qui dolores laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.261205"], ["updated_at", "2020-05-05 17:04:24.261205"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "totam"], ["description", "Laudantium reprehenderit numquam fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.263531"], ["updated_at", "2020-05-05 17:04:24.263531"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Quis recusandae officia nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.265329"], ["updated_at", "2020-05-05 17:04:24.265329"], ["created_by", "1"]]
+ [1m[35m (10.9ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Voluptatem quod vel voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.278716"], ["updated_at", "2020-05-05 17:04:24.278716"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eius"], ["description", "Exercitationem maiores ab voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.280418"], ["updated_at", "2020-05-05 17:04:24.280418"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Doloremque minus sunt ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.281935"], ["updated_at", "2020-05-05 17:04:24.281935"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Eos a exercitationem quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.283321"], ["updated_at", "2020-05-05 17:04:24.283321"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Quasi voluptatem quae ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.284714"], ["updated_at", "2020-05-05 17:04:24.284714"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Nisi ut possimus voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.286178"], ["updated_at", "2020-05-05 17:04:24.286178"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Dave Batz IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5NEEhFVtyKrBrig8ufKAeuUPPC8a.wm1Uaf0Y8aWMOVDxIYsQTepW"], ["created_at", "2020-05-05 17:04:24.300524"], ["updated_at", "2020-05-05 17:04:24.300524"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:24 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.16ms)
+Completed 200 OK in 12ms (Views: 9.2ms | ActiveRecord: 0.4ms | Allocations: 4087)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Laborum ipsum dolores enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.363533"], ["updated_at", "2020-05-05 17:04:24.363533"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Pariatur commodi dolor iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.367862"], ["updated_at", "2020-05-05 17:04:24.367862"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Autem consequatur autem alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.369684"], ["updated_at", "2020-05-05 17:04:24.369684"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Aperiam delectus natus officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.371273"], ["updated_at", "2020-05-05 17:04:24.371273"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Libero consequatur voluptatem exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.372827"], ["updated_at", "2020-05-05 17:04:24.372827"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Repellendus est cupiditate illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.374513"], ["updated_at", "2020-05-05 17:04:24.374513"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Modi est aliquam rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.376581"], ["updated_at", "2020-05-05 17:04:24.376581"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Dolorem unde sint sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.378805"], ["updated_at", "2020-05-05 17:04:24.378805"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Voluptatem aut eligendi qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.380236"], ["updated_at", "2020-05-05 17:04:24.380236"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Eius culpa rem rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.381565"], ["updated_at", "2020-05-05 17:04:24.381565"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Gregorio Keebler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$D/crOvIesFhYvmvIQJYaS.ngmFEoza6MER3aZbMzOm/pZW2/pTMcq"], ["created_at", "2020-05-05 17:04:24.384241"], ["updated_at", "2020-05-05 17:04:24.384241"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:24 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.32ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2844)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Sed rerum vel soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.401368"], ["updated_at", "2020-05-05 17:04:24.401368"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Laudantium alias nihil cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.405699"], ["updated_at", "2020-05-05 17:04:24.405699"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Dolore culpa doloremque cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.407459"], ["updated_at", "2020-05-05 17:04:24.407459"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Occaecati rerum non laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.409044"], ["updated_at", "2020-05-05 17:04:24.409044"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Est ea cumque numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.410582"], ["updated_at", "2020-05-05 17:04:24.410582"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Debitis ut sit eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.411984"], ["updated_at", "2020-05-05 17:04:24.411984"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Voluptates reprehenderit in nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.413450"], ["updated_at", "2020-05-05 17:04:24.413450"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Excepturi mollitia numquam voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.416978"], ["updated_at", "2020-05-05 17:04:24.416978"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "totam"], ["description", "Aut fugit et voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.419804"], ["updated_at", "2020-05-05 17:04:24.419804"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Enim odit placeat mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.421523"], ["updated_at", "2020-05-05 17:04:24.421523"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "May Swift"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xncne5OcZ7RVUIJxLsbn2eWYbE/9fpu5aTZrOE52y4m8jeSmcNAE."], ["created_at", "2020-05-05 17:04:24.424284"], ["updated_at", "2020-05-05 17:04:24.424284"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:24 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.34ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2842)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Soluta iste et est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.441903"], ["updated_at", "2020-05-05 17:04:24.441903"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Eum delectus architecto incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.445146"], ["updated_at", "2020-05-05 17:04:24.445146"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempora"], ["description", "Voluptatum sint libero enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.447435"], ["updated_at", "2020-05-05 17:04:24.447435"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laboriosam"], ["description", "Praesentium voluptatem numquam porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.449156"], ["updated_at", "2020-05-05 17:04:24.449156"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Sequi quis saepe assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.450756"], ["updated_at", "2020-05-05 17:04:24.450756"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Ut commodi ut sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.452164"], ["updated_at", "2020-05-05 17:04:24.452164"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Officiis totam soluta praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.453571"], ["updated_at", "2020-05-05 17:04:24.453571"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Earum maxime hic ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.455385"], ["updated_at", "2020-05-05 17:04:24.455385"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Corporis ea distinctio optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.457756"], ["updated_at", "2020-05-05 17:04:24.457756"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Magni ratione quod similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.459440"], ["updated_at", "2020-05-05 17:04:24.459440"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Sarai Medhurst V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.ily/3ZqLCXdvOsAnd83cufjc13KV8mRSJp2VGPIJbE5BSRdDSwdq"], ["created_at", "2020-05-05 17:04:24.462247"], ["updated_at", "2020-05-05 17:04:24.462247"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:24 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.24ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2843)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Quod nobis accusamus nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.479219"], ["updated_at", "2020-05-05 17:04:24.479219"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Itaque et magni nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.482341"], ["updated_at", "2020-05-05 17:04:24.482341"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Magnam est fuga dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.484651"], ["updated_at", "2020-05-05 17:04:24.484651"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Provident voluptatem magnam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.486101"], ["updated_at", "2020-05-05 17:04:24.486101"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Ab et et omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.487605"], ["updated_at", "2020-05-05 17:04:24.487605"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Consequatur maiores itaque corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.489178"], ["updated_at", "2020-05-05 17:04:24.489178"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Beatae sit rerum animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.490580"], ["updated_at", "2020-05-05 17:04:24.490580"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Beatae ducimus dolorem porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.491927"], ["updated_at", "2020-05-05 17:04:24.491927"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Exercitationem ullam ut libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.493299"], ["updated_at", "2020-05-05 17:04:24.493299"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ut earum assumenda molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.494809"], ["updated_at", "2020-05-05 17:04:24.494809"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Orville Reichert IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/pKGj5wcQ64hw/eYXfZ20uqXuTgM7JBeLdq9qVhAnyUVGEVsT1I.C"], ["created_at", "2020-05-05 17:04:24.498407"], ["updated_at", "2020-05-05 17:04:24.498407"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:24 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.49ms)
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2843)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Sint aut voluptatibus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.516326"], ["updated_at", "2020-05-05 17:04:24.516326"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Ad autem itaque eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.519771"], ["updated_at", "2020-05-05 17:04:24.519771"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Deleniti animi eius quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.521834"], ["updated_at", "2020-05-05 17:04:24.521834"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "A aut eos fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.523190"], ["updated_at", "2020-05-05 17:04:24.523190"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Expedita consectetur omnis saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.524510"], ["updated_at", "2020-05-05 17:04:24.524510"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Ut deserunt saepe sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.525839"], ["updated_at", "2020-05-05 17:04:24.525839"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Vel quae voluptatem ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.527333"], ["updated_at", "2020-05-05 17:04:24.527333"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Quis amet explicabo ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.528720"], ["updated_at", "2020-05-05 17:04:24.528720"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Accusantium omnis temporibus eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.530145"], ["updated_at", "2020-05-05 17:04:24.530145"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Necessitatibus quidem sequi consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:24.531577"], ["updated_at", "2020-05-05 17:04:24.531577"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ms. Jacinta Buckridge"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Vr.SyNRcghIv6J6kthUgAe3IWKff6XD9aDU11ntUFTuWq.jDwNiKe"], ["created_at", "2020-05-05 17:04:24.534238"], ["updated_at", "2020-05-05 17:04:24.534238"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:24 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.47ms)
+Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.4ms | Allocations: 2842)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (5.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (127.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (92.6ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (110.4ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (122.1ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (129.5ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (131.8ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (72.8ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Saepe ea quaerat ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.415550"], ["updated_at", "2020-05-05 17:04:42.415550"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Maiores quae molestiae fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.419887"], ["updated_at", "2020-05-05 17:04:42.419887"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "occaecati"], ["description", "Qui qui magni tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.422771"], ["updated_at", "2020-05-05 17:04:42.422771"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Pariatur laborum suscipit autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.425832"], ["updated_at", "2020-05-05 17:04:42.425832"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Quis quis sit aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.427895"], ["updated_at", "2020-05-05 17:04:42.427895"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Sed quia tempora sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.429953"], ["updated_at", "2020-05-05 17:04:42.429953"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Mollitia quia qui exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.431489"], ["updated_at", "2020-05-05 17:04:42.431489"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Voluptatibus sapiente reiciendis libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.432887"], ["updated_at", "2020-05-05 17:04:42.432887"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Necessitatibus dolores odit illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.434314"], ["updated_at", "2020-05-05 17:04:42.434314"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Totam impedit et quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.435719"], ["updated_at", "2020-05-05 17:04:42.435719"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mayra Kling"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vXxeiGux8pYQ.34xPDjCfemsKVhm/advzjXmYfj0rWxjmAAVhJqBe"], ["created_at", "2020-05-05 17:04:42.451395"], ["updated_at", "2020-05-05 17:04:42.451395"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:42 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.4ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.57ms)
+Completed 200 OK in 16ms (Views: 12.8ms | ActiveRecord: 0.6ms | Allocations: 4083)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (27.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Provident repudiandae sed molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.550804"], ["updated_at", "2020-05-05 17:04:42.550804"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Ea dolorem eligendi enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.553605"], ["updated_at", "2020-05-05 17:04:42.553605"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Quia ducimus eveniet suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.555003"], ["updated_at", "2020-05-05 17:04:42.555003"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Rerum magni aliquid qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.556306"], ["updated_at", "2020-05-05 17:04:42.556306"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Aperiam reiciendis qui aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.557872"], ["updated_at", "2020-05-05 17:04:42.557872"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Enim a magnam esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.559488"], ["updated_at", "2020-05-05 17:04:42.559488"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Quaerat quisquam nihil enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.560681"], ["updated_at", "2020-05-05 17:04:42.560681"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ab"], ["description", "Sit repellendus occaecati esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.563076"], ["updated_at", "2020-05-05 17:04:42.563076"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Voluptate odio nemo veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.565193"], ["updated_at", "2020-05-05 17:04:42.565193"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Nobis voluptates suscipit enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.566696"], ["updated_at", "2020-05-05 17:04:42.566696"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mr. Issac Spencer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fFiH/6QO0wCvYlqIudCC7euYLwNtTr8lMX9dc0TuOrLUj.9e/5vma"], ["created_at", "2020-05-05 17:04:42.569610"], ["updated_at", "2020-05-05 17:04:42.569610"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:42 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.29ms)
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2845)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Deleniti consequatur id eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.587752"], ["updated_at", "2020-05-05 17:04:42.587752"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Eos velit omnis vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.592007"], ["updated_at", "2020-05-05 17:04:42.592007"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Et asperiores dolor aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.593859"], ["updated_at", "2020-05-05 17:04:42.593859"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Sunt expedita aut quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.595464"], ["updated_at", "2020-05-05 17:04:42.595464"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Repellat aut voluptatem est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.597193"], ["updated_at", "2020-05-05 17:04:42.597193"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cum"], ["description", "Velit quos quam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.599384"], ["updated_at", "2020-05-05 17:04:42.599384"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Voluptates voluptatibus expedita consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.601555"], ["updated_at", "2020-05-05 17:04:42.601555"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Accusantium dolorem ratione maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.604200"], ["updated_at", "2020-05-05 17:04:42.604200"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Recusandae quod possimus rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.605813"], ["updated_at", "2020-05-05 17:04:42.605813"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Reiciendis harum qui officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.607917"], ["updated_at", "2020-05-05 17:04:42.607917"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Violette Kling"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$45hiwkjvuL55RrXoTQU2ieXjte96MmTSGP75arRwa2Bbn79Arhleu"], ["created_at", "2020-05-05 17:04:42.611217"], ["updated_at", "2020-05-05 17:04:42.611217"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:42 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.66ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:04:42 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (13.09ms)
+Completed 200 OK in 94ms (Views: 17.3ms | ActiveRecord: 1.0ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Sint voluptatem praesentium officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.757778"], ["updated_at", "2020-05-05 17:04:42.757778"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Similique incidunt id et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.760958"], ["updated_at", "2020-05-05 17:04:42.760958"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Ea in cupiditate similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.762542"], ["updated_at", "2020-05-05 17:04:42.762542"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Quae tempora ducimus ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.764544"], ["updated_at", "2020-05-05 17:04:42.764544"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Fugit incidunt facilis similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.767617"], ["updated_at", "2020-05-05 17:04:42.767617"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Fugit numquam repudiandae corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.769716"], ["updated_at", "2020-05-05 17:04:42.769716"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Commodi qui sit natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.771323"], ["updated_at", "2020-05-05 17:04:42.771323"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Tempora et qui quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.772892"], ["updated_at", "2020-05-05 17:04:42.772892"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odio"], ["description", "Nihil temporibus quod sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.774256"], ["updated_at", "2020-05-05 17:04:42.774256"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Repudiandae rerum veritatis dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.775674"], ["updated_at", "2020-05-05 17:04:42.775674"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Derrick Graham II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xuqX9IQrmkQQE3yooM2Bd.7NAoUHvQUn/tFkdoA/J8xrazjoz/6kK"], ["created_at", "2020-05-05 17:04:42.778415"], ["updated_at", "2020-05-05 17:04:42.778415"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:42 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.01ms)
+Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:04:42 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.64ms)
+Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Voluptas autem qui praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.802190"], ["updated_at", "2020-05-05 17:04:42.802190"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Et non voluptatibus natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.806902"], ["updated_at", "2020-05-05 17:04:42.806902"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Ipsum cum magni quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.808657"], ["updated_at", "2020-05-05 17:04:42.808657"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "hic"], ["description", "Et vitae in nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.810270"], ["updated_at", "2020-05-05 17:04:42.810270"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vero"], ["description", "Est voluptate veniam molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.811778"], ["updated_at", "2020-05-05 17:04:42.811778"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eius"], ["description", "Non aliquam est aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.813089"], ["updated_at", "2020-05-05 17:04:42.813089"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Repudiandae quis rerum nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.814377"], ["updated_at", "2020-05-05 17:04:42.814377"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "Consequuntur harum omnis dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.815757"], ["updated_at", "2020-05-05 17:04:42.815757"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Officiis id ullam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.817406"], ["updated_at", "2020-05-05 17:04:42.817406"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "necessitatibus"], ["description", "Quod eligendi doloribus nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.818869"], ["updated_at", "2020-05-05 17:04:42.818869"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Tillie Hodkiewicz PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/ZnZB.uwp5d6Uk.91rt6FONWZYTJ94DzqQ/yEGSCgEKvvpI5D1sIK"], ["created_at", "2020-05-05 17:04:42.821390"], ["updated_at", "2020-05-05 17:04:42.821390"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:42 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.75ms)
+Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.3ms | Allocations: 2842)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:04:42 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Et quidem sint voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.844681"], ["updated_at", "2020-05-05 17:04:42.844681"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Occaecati cumque omnis facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.848517"], ["updated_at", "2020-05-05 17:04:42.848517"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Sunt magnam reprehenderit blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.850206"], ["updated_at", "2020-05-05 17:04:42.850206"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Architecto porro aut aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.851606"], ["updated_at", "2020-05-05 17:04:42.851606"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Provident quam minus molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.852985"], ["updated_at", "2020-05-05 17:04:42.852985"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Aut perferendis odio enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.854624"], ["updated_at", "2020-05-05 17:04:42.854624"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Magnam sunt ratione expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.856368"], ["updated_at", "2020-05-05 17:04:42.856368"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Dolores pariatur dolorem occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.858073"], ["updated_at", "2020-05-05 17:04:42.858073"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Doloremque eius omnis alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.859583"], ["updated_at", "2020-05-05 17:04:42.859583"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Alias quia et omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:04:42.860795"], ["updated_at", "2020-05-05 17:04:42.860795"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Prince Schiller III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aNKuTmii3ilR9n1ETXdD4.uRXzrZ5dkEv3MNRFnCxh9q5se2KuuYC"], ["created_at", "2020-05-05 17:04:42.863410"], ["updated_at", "2020-05-05 17:04:42.863410"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:42 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.41ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.3ms | Allocations: 2845)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:04:42 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (129.8ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (118.2ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (118.7ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (80.8ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (89.0ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (88.8ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (72.4ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Occaecati est est est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.621995"], ["updated_at", "2020-05-05 17:05:34.621995"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Sunt consectetur illo dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.625583"], ["updated_at", "2020-05-05 17:05:34.625583"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Quam ut animi asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.627672"], ["updated_at", "2020-05-05 17:05:34.627672"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Rerum et illum voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.629428"], ["updated_at", "2020-05-05 17:05:34.629428"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Molestiae aut accusantium natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.642394"], ["updated_at", "2020-05-05 17:05:34.642394"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "At perferendis totam doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.644793"], ["updated_at", "2020-05-05 17:05:34.644793"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Optio tempora autem repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.646365"], ["updated_at", "2020-05-05 17:05:34.646365"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "at"], ["description", "Consequatur maiores nam dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.647789"], ["updated_at", "2020-05-05 17:05:34.647789"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Fugiat repellat sapiente quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.649262"], ["updated_at", "2020-05-05 17:05:34.649262"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Odit beatae ipsa sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.650710"], ["updated_at", "2020-05-05 17:05:34.650710"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Heike Koepp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aGRDkqdrxz3HdKhdAS.2Ae1Wt4MGpw9ufibjjjR.eshh1Tje4fuf2"], ["created_at", "2020-05-05 17:05:34.665706"], ["updated_at", "2020-05-05 17:05:34.665706"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:05:34 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.5ms)
+Completed 200 OK in 12ms (Views: 9.3ms | ActiveRecord: 0.4ms | Allocations: 4085)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Ut ullam consequatur quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.730272"], ["updated_at", "2020-05-05 17:05:34.730272"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Sint rerum harum blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.734459"], ["updated_at", "2020-05-05 17:05:34.734459"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Rerum impedit nam nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.736367"], ["updated_at", "2020-05-05 17:05:34.736367"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "necessitatibus"], ["description", "Fuga modi excepturi minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.737847"], ["updated_at", "2020-05-05 17:05:34.737847"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Dicta incidunt enim beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.739274"], ["updated_at", "2020-05-05 17:05:34.739274"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Et consequatur vitae amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.740754"], ["updated_at", "2020-05-05 17:05:34.740754"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Numquam omnis ducimus expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.743027"], ["updated_at", "2020-05-05 17:05:34.743027"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Accusantium ut esse laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.744540"], ["updated_at", "2020-05-05 17:05:34.744540"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Dolorum ipsa enim eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.745780"], ["updated_at", "2020-05-05 17:05:34.745780"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Eius provident debitis voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.747097"], ["updated_at", "2020-05-05 17:05:34.747097"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ula Ullrich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jEnrX7xyJL.QG565DJBNpOMGOmIy5nz/0kLYYJZYCacrKiMfMYc0i"], ["created_at", "2020-05-05 17:05:34.749737"], ["updated_at", "2020-05-05 17:05:34.749737"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:05:34 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.35ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2845)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (4.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Omnis tempora voluptate id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.765988"], ["updated_at", "2020-05-05 17:05:34.765988"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Sequi dignissimos id vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.770543"], ["updated_at", "2020-05-05 17:05:34.770543"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Sunt natus voluptatem non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.772331"], ["updated_at", "2020-05-05 17:05:34.772331"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Qui aut ducimus soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.774657"], ["updated_at", "2020-05-05 17:05:34.774657"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Qui odio natus quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.776227"], ["updated_at", "2020-05-05 17:05:34.776227"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Et nostrum illum eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.778370"], ["updated_at", "2020-05-05 17:05:34.778370"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Provident omnis omnis sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.780276"], ["updated_at", "2020-05-05 17:05:34.780276"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Natus itaque autem rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.781986"], ["updated_at", "2020-05-05 17:05:34.781986"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Modi suscipit id alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.783801"], ["updated_at", "2020-05-05 17:05:34.783801"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ab"], ["description", "Quisquam molestias non nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.785212"], ["updated_at", "2020-05-05 17:05:34.785212"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Leisha Zboncak"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hBI8P4ah2g9oMar1teRIKOCPOcBmjz8fffosTZ9LAEEdZZdMnXj/."], ["created_at", "2020-05-05 17:05:34.787915"], ["updated_at", "2020-05-05 17:05:34.787915"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:05:34 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.46ms)
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:05:34 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (13.0ms)
+Completed 200 OK in 51ms (Views: 17.0ms | ActiveRecord: 0.8ms | Allocations: 7681)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Cumque inventore rerum placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.897943"], ["updated_at", "2020-05-05 17:05:34.897943"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Fugit impedit rem nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.901990"], ["updated_at", "2020-05-05 17:05:34.901990"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempora"], ["description", "Voluptatem voluptate ut nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.903824"], ["updated_at", "2020-05-05 17:05:34.903824"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Non voluptas quis explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.905288"], ["updated_at", "2020-05-05 17:05:34.905288"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Eum perspiciatis corporis dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.906748"], ["updated_at", "2020-05-05 17:05:34.906748"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempore"], ["description", "Aut quidem quis eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.908180"], ["updated_at", "2020-05-05 17:05:34.908180"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "occaecati"], ["description", "Delectus in deserunt ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.909720"], ["updated_at", "2020-05-05 17:05:34.909720"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Quia iure qui impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.911048"], ["updated_at", "2020-05-05 17:05:34.911048"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Atque et qui inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.912612"], ["updated_at", "2020-05-05 17:05:34.912612"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Delectus et quis ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.914762"], ["updated_at", "2020-05-05 17:05:34.914762"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Horacio Schimmel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KnXzwLOD3iICrY8/klJj0OfZTLG5Zp/HbM7f19zW2f85XnF/.iATW"], ["created_at", "2020-05-05 17:05:34.918305"], ["updated_at", "2020-05-05 17:05:34.918305"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:05:34 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.37ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:05:34 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.19ms)
+Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Et quo id repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.941613"], ["updated_at", "2020-05-05 17:05:34.941613"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Magni sed ea voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.945012"], ["updated_at", "2020-05-05 17:05:34.945012"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Voluptates rerum dolorum rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.947334"], ["updated_at", "2020-05-05 17:05:34.947334"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Quo quia quia accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.948948"], ["updated_at", "2020-05-05 17:05:34.948948"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Eum debitis quidem veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.950485"], ["updated_at", "2020-05-05 17:05:34.950485"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Et maiores tempore qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.951738"], ["updated_at", "2020-05-05 17:05:34.951738"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Et non nam a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.953252"], ["updated_at", "2020-05-05 17:05:34.953252"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Atque corrupti accusantium quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.956121"], ["updated_at", "2020-05-05 17:05:34.956121"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Non sint ab ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.958943"], ["updated_at", "2020-05-05 17:05:34.958943"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "possimus"], ["description", "Iure cumque error dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:34.960464"], ["updated_at", "2020-05-05 17:05:34.960464"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Stacee Erdman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oZ3U0NPO.I1w7Mqx0BkY0.Nfr8wnAdDDW04NjBo.zPUO19PiyjNx6"], ["created_at", "2020-05-05 17:05:34.963357"], ["updated_at", "2020-05-05 17:05:34.963357"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:05:34 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.31ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:05:34 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 404 Not Found in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (33.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Esse ipsa vel eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:35.012523"], ["updated_at", "2020-05-05 17:05:35.012523"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Fuga fugit mollitia velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:35.015885"], ["updated_at", "2020-05-05 17:05:35.015885"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Soluta ea ut dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:35.019822"], ["updated_at", "2020-05-05 17:05:35.019822"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Quos consequatur nemo voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:35.021377"], ["updated_at", "2020-05-05 17:05:35.021377"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Ea molestias laborum iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:35.022813"], ["updated_at", "2020-05-05 17:05:35.022813"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Repellendus consequatur labore consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:35.024194"], ["updated_at", "2020-05-05 17:05:35.024194"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Nihil rem repellendus deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:35.025694"], ["updated_at", "2020-05-05 17:05:35.025694"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Deserunt temporibus id velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:35.027120"], ["updated_at", "2020-05-05 17:05:35.027120"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Amet eius accusamus autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:35.028535"], ["updated_at", "2020-05-05 17:05:35.028535"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Mollitia culpa quo neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:05:35.029919"], ["updated_at", "2020-05-05 17:05:35.029919"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Carrol Vandervort Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jqsWRdWNhZf2KYbsFe/MeubuuZrjl6BSD5zIudylQ0TP6ZUL3EAoa"], ["created_at", "2020-05-05 17:05:35.032536"], ["updated_at", "2020-05-05 17:05:35.032536"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:05:35 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.12ms)
+Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:05:35 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (196.8ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (109.6ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.9ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (101.2ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (64.2ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (82.0ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (64.0ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (64.7ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (33.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Eum nostrum inventore odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.399936"], ["updated_at", "2020-05-05 17:06:06.399936"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempora"], ["description", "Ipsa hic dolores nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.436372"], ["updated_at", "2020-05-05 17:06:06.436372"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vero"], ["description", "Corrupti harum vel molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.438559"], ["updated_at", "2020-05-05 17:06:06.438559"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Quae rem accusamus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.440509"], ["updated_at", "2020-05-05 17:06:06.440509"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Optio nesciunt quo aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.468264"], ["updated_at", "2020-05-05 17:06:06.468264"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Consequatur ut rem laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.472093"], ["updated_at", "2020-05-05 17:06:06.472093"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Corporis dolor quod modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.473724"], ["updated_at", "2020-05-05 17:06:06.473724"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Ea perspiciatis maxime rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.475235"], ["updated_at", "2020-05-05 17:06:06.475235"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Sit voluptatem beatae sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.476712"], ["updated_at", "2020-05-05 17:06:06.476712"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Nihil ea aut ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.478218"], ["updated_at", "2020-05-05 17:06:06.478218"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Daniel Armstrong"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Rk/CLtP2.nrFxEJxoy92NubDu1vE0BccTTHTIuG9jomhkXbFq0WYK"], ["created_at", "2020-05-05 17:06:06.492888"], ["updated_at", "2020-05-05 17:06:06.492888"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.8ms)
+Completed 200 OK in 13ms (Views: 9.9ms | ActiveRecord: 0.4ms | Allocations: 4084)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Error perspiciatis reiciendis distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.559387"], ["updated_at", "2020-05-05 17:06:06.559387"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Assumenda velit in ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.563289"], ["updated_at", "2020-05-05 17:06:06.563289"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Eaque totam sequi in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.565663"], ["updated_at", "2020-05-05 17:06:06.565663"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Impedit quaerat officiis error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.567446"], ["updated_at", "2020-05-05 17:06:06.567446"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Illo velit error sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.568828"], ["updated_at", "2020-05-05 17:06:06.568828"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Eius itaque minus officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.570136"], ["updated_at", "2020-05-05 17:06:06.570136"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Culpa cumque aut nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.571441"], ["updated_at", "2020-05-05 17:06:06.571441"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Quos nam aspernatur porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.572802"], ["updated_at", "2020-05-05 17:06:06.572802"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Assumenda et sequi saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.574121"], ["updated_at", "2020-05-05 17:06:06.574121"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Voluptatem facilis dicta laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.575429"], ["updated_at", "2020-05-05 17:06:06.575429"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mrs. Alda Dicki"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.zxccFcf1B/A2.snRXG7lebD3vjRooFdpkNsOtvrW18JFG4cRt.yW"], ["created_at", "2020-05-05 17:06:06.578122"], ["updated_at", "2020-05-05 17:06:06.578122"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.53ms)
+Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2844)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Commodi ab dolorem veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.596556"], ["updated_at", "2020-05-05 17:06:06.596556"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "earum"], ["description", "Aliquid ut nulla unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.599468"], ["updated_at", "2020-05-05 17:06:06.599468"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Illo et aut culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.601258"], ["updated_at", "2020-05-05 17:06:06.601258"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Velit tempora deserunt sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.603925"], ["updated_at", "2020-05-05 17:06:06.603925"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Distinctio deserunt mollitia amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.606437"], ["updated_at", "2020-05-05 17:06:06.606437"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "possimus"], ["description", "Et veritatis et voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.608015"], ["updated_at", "2020-05-05 17:06:06.608015"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Sit suscipit repellendus quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.609435"], ["updated_at", "2020-05-05 17:06:06.609435"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Aliquam et qui vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.610849"], ["updated_at", "2020-05-05 17:06:06.610849"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Minus quo iste minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.612177"], ["updated_at", "2020-05-05 17:06:06.612177"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Voluptate mollitia qui nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.613760"], ["updated_at", "2020-05-05 17:06:06.613760"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Miss Francisco Schiller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CKfXxc/rULQsrPYNxxs1C.z76ZSdZNVwhRCJhMMgDIdTeKelNRspq"], ["created_at", "2020-05-05 17:06:06.616943"], ["updated_at", "2020-05-05 17:06:06.616943"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.68ms)
+Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:06:06 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (13.19ms)
+Completed 200 OK in 52ms (Views: 17.5ms | ActiveRecord: 0.8ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (9.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Consectetur est a odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.698159"], ["updated_at", "2020-05-05 17:06:06.698159"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Iste ut inventore aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.703194"], ["updated_at", "2020-05-05 17:06:06.703194"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Omnis quia mollitia qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.711653"], ["updated_at", "2020-05-05 17:06:06.711653"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Nihil est reprehenderit aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.714651"], ["updated_at", "2020-05-05 17:06:06.714651"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Libero ut explicabo eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.717888"], ["updated_at", "2020-05-05 17:06:06.717888"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cum"], ["description", "Voluptas aut rem qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.719432"], ["updated_at", "2020-05-05 17:06:06.719432"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Facere nisi sequi natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.720876"], ["updated_at", "2020-05-05 17:06:06.720876"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Quia libero illum ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.723051"], ["updated_at", "2020-05-05 17:06:06.723051"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Cumque voluptas minus corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.725927"], ["updated_at", "2020-05-05 17:06:06.725927"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Amet laboriosam tempore veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.728060"], ["updated_at", "2020-05-05 17:06:06.728060"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Earnest Rogahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1lhKrxP4iBO6DqGtgU.Hj.MTDHCMRfnceFXqIyVRNpVuwX.Qx6UFy"], ["created_at", "2020-05-05 17:06:06.730684"], ["updated_at", "2020-05-05 17:06:06.730684"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.41ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2843)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:06:06 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.89ms)
+Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.2ms | Allocations: 1239)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (45.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Adipisci qui explicabo rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.792732"], ["updated_at", "2020-05-05 17:06:06.792732"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Distinctio earum sit corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.796184"], ["updated_at", "2020-05-05 17:06:06.796184"], ["created_by", "1"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Eum enim exercitationem omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.801305"], ["updated_at", "2020-05-05 17:06:06.801305"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Odio non aliquam excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.805570"], ["updated_at", "2020-05-05 17:06:06.805570"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Quia quia nisi sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.808193"], ["updated_at", "2020-05-05 17:06:06.808193"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Facere in quam saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.809897"], ["updated_at", "2020-05-05 17:06:06.809897"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Dolores necessitatibus rem ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.811298"], ["updated_at", "2020-05-05 17:06:06.811298"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Iure sequi nesciunt quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.812595"], ["updated_at", "2020-05-05 17:06:06.812595"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Laborum earum aut culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.813835"], ["updated_at", "2020-05-05 17:06:06.813835"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Laborum dolor odio sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.815074"], ["updated_at", "2020-05-05 17:06:06.815074"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Xavier Mueller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$elL2CSUPm2vjHh1LYm40Q.60rCi/n6tu5IUCfCY92Dqs0fj4oae92"], ["created_at", "2020-05-05 17:06:06.817753"], ["updated_at", "2020-05-05 17:06:06.817753"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.7ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2843)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:06:06 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Neque quae natus repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.837940"], ["updated_at", "2020-05-05 17:06:06.837940"], ["created_by", "1"]]
+ [1m[35m (0.4ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Beatae voluptate deleniti accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.842508"], ["updated_at", "2020-05-05 17:06:06.842508"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Reiciendis voluptas et doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.845156"], ["updated_at", "2020-05-05 17:06:06.845156"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laboriosam"], ["description", "Similique ut est et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.846924"], ["updated_at", "2020-05-05 17:06:06.846924"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Voluptatem ad sit occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.848546"], ["updated_at", "2020-05-05 17:06:06.848546"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Ea provident est facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.850823"], ["updated_at", "2020-05-05 17:06:06.850823"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Magni praesentium natus earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.852484"], ["updated_at", "2020-05-05 17:06:06.852484"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Laudantium recusandae ab eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.853883"], ["updated_at", "2020-05-05 17:06:06.853883"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Occaecati accusamus saepe quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.855201"], ["updated_at", "2020-05-05 17:06:06.855201"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Dolor consequatur excepturi iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:06.856653"], ["updated_at", "2020-05-05 17:06:06.856653"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Bill Reynolds"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bJEIYv6ivELObcTeJaiOuO.hNgid2ZBJh7C6KZF1.WX1R0E4D/gKC"], ["created_at", "2020-05-05 17:06:06.859395"], ["updated_at", "2020-05-05 17:06:06.859395"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.67ms)
+Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms | Allocations: 2845)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:06:06 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.2ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (151.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (126.6ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (77.4ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (82.0ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (89.9ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (89.0ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (80.0ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (38.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Impedit alias iste illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:43.846099"], ["updated_at", "2020-05-05 17:06:43.846099"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Est commodi amet tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:43.888997"], ["updated_at", "2020-05-05 17:06:43.888997"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Assumenda rem consequuntur sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:43.894457"], ["updated_at", "2020-05-05 17:06:43.894457"], ["created_by", "1"]]
+ [1m[35m (0.7ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Nam quae odit similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:43.899278"], ["updated_at", "2020-05-05 17:06:43.899278"], ["created_by", "1"]]
+ [1m[35m (17.5ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Corporis eos voluptatibus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:43.921186"], ["updated_at", "2020-05-05 17:06:43.921186"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Dolore tenetur atque fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:43.923699"], ["updated_at", "2020-05-05 17:06:43.923699"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "beatae"], ["description", "Ut animi quos provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:43.926244"], ["updated_at", "2020-05-05 17:06:43.926244"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Amet illum libero ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:43.928230"], ["updated_at", "2020-05-05 17:06:43.928230"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Commodi blanditiis dolores doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:43.930098"], ["updated_at", "2020-05-05 17:06:43.930098"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Maiores quo in aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:43.932078"], ["updated_at", "2020-05-05 17:06:43.932078"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Claud Champlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4RQp4CBfp/KjHFT7OBInfeMgblTm63hqTYLUNECe8p7ZYZ54v2fUu"], ["created_at", "2020-05-05 17:06:43.948671"], ["updated_at", "2020-05-05 17:06:43.948671"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:43 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.31ms)
+Completed 200 OK in 12ms (Views: 9.5ms | ActiveRecord: 0.4ms | Allocations: 4086)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Similique odit sunt suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.013475"], ["updated_at", "2020-05-05 17:06:44.013475"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Totam sapiente aliquam reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.017255"], ["updated_at", "2020-05-05 17:06:44.017255"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Enim asperiores dolorem itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.019102"], ["updated_at", "2020-05-05 17:06:44.019102"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Voluptatem voluptatem voluptatibus perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.020381"], ["updated_at", "2020-05-05 17:06:44.020381"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laboriosam"], ["description", "Consequatur dolorum ea fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.021675"], ["updated_at", "2020-05-05 17:06:44.021675"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "totam"], ["description", "Amet repellendus ut nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.022928"], ["updated_at", "2020-05-05 17:06:44.022928"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Exercitationem voluptate sed impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.024462"], ["updated_at", "2020-05-05 17:06:44.024462"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Voluptas dignissimos consequatur excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.025859"], ["updated_at", "2020-05-05 17:06:44.025859"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Quia eligendi et aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.027198"], ["updated_at", "2020-05-05 17:06:44.027198"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Ex et vero reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.028488"], ["updated_at", "2020-05-05 17:06:44.028488"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Harris Greenfelder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aGxFNxEe22UOhUHr5jSKquLNG1/kEX10hbLS6R4VyDnw.bFX8/ZXG"], ["created_at", "2020-05-05 17:06:44.031278"], ["updated_at", "2020-05-05 17:06:44.031278"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:44 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.19ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2844)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Velit est nemo debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.049291"], ["updated_at", "2020-05-05 17:06:44.049291"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Est et harum architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.052960"], ["updated_at", "2020-05-05 17:06:44.052960"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Doloribus iste blanditiis qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.054761"], ["updated_at", "2020-05-05 17:06:44.054761"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Iure incidunt eveniet eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.056139"], ["updated_at", "2020-05-05 17:06:44.056139"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ipsam enim praesentium inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.057534"], ["updated_at", "2020-05-05 17:06:44.057534"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Illo minus qui sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.058805"], ["updated_at", "2020-05-05 17:06:44.058805"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Rerum fuga a pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.060180"], ["updated_at", "2020-05-05 17:06:44.060180"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Eligendi repudiandae amet aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.061545"], ["updated_at", "2020-05-05 17:06:44.061545"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Quis ullam magni harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.062882"], ["updated_at", "2020-05-05 17:06:44.062882"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nemo"], ["description", "Aperiam molestias facere quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.064919"], ["updated_at", "2020-05-05 17:06:44.064919"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ulysses Nikolaus"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VO8vCHwN0scGWoaYB7axneFR/G1ndo9gMTdE0u1TdZT/g0HLkhw2W"], ["created_at", "2020-05-05 17:06:44.069279"], ["updated_at", "2020-05-05 17:06:44.069279"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:44 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.26ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:06:44 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.81ms)
+Completed 200 OK in 51ms (Views: 16.6ms | ActiveRecord: 0.8ms | Allocations: 7680)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Ut ipsum aut tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.139062"], ["updated_at", "2020-05-05 17:06:44.139062"], ["created_by", "1"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Aut optio tempora et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.146209"], ["updated_at", "2020-05-05 17:06:44.146209"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Et ea eius non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.149676"], ["updated_at", "2020-05-05 17:06:44.149676"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Sint accusamus voluptatibus tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.151484"], ["updated_at", "2020-05-05 17:06:44.151484"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Vero alias impedit consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.152971"], ["updated_at", "2020-05-05 17:06:44.152971"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Quidem voluptas et rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.154313"], ["updated_at", "2020-05-05 17:06:44.154313"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vero"], ["description", "Qui voluptas labore quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.155844"], ["updated_at", "2020-05-05 17:06:44.155844"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempora"], ["description", "Velit vel dolor autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.158673"], ["updated_at", "2020-05-05 17:06:44.158673"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Repudiandae voluptas est quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.161108"], ["updated_at", "2020-05-05 17:06:44.161108"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Delectus in molestiae voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.162658"], ["updated_at", "2020-05-05 17:06:44.162658"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Cherise Wiegand"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$L6Z/NGgvBOQ.A3IrLYRKVe2cua8u1SqPsFapx5SzrfshopI70pLrS"], ["created_at", "2020-05-05 17:06:44.165520"], ["updated_at", "2020-05-05 17:06:44.165520"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:44 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.19ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:06:44 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.31ms)
+Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.2ms | Allocations: 1239)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Qui repellat aspernatur qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.188128"], ["updated_at", "2020-05-05 17:06:44.188128"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Dolores sunt delectus repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.190915"], ["updated_at", "2020-05-05 17:06:44.190915"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Asperiores repudiandae suscipit quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.192362"], ["updated_at", "2020-05-05 17:06:44.192362"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Tempore numquam vitae mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.193791"], ["updated_at", "2020-05-05 17:06:44.193791"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Deserunt blanditiis delectus dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.195108"], ["updated_at", "2020-05-05 17:06:44.195108"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Aliquam eum nostrum odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.196493"], ["updated_at", "2020-05-05 17:06:44.196493"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Nisi officia excepturi sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.197973"], ["updated_at", "2020-05-05 17:06:44.197973"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vero"], ["description", "Eaque adipisci in tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.199322"], ["updated_at", "2020-05-05 17:06:44.199322"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Dolores dolorem veritatis ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.200609"], ["updated_at", "2020-05-05 17:06:44.200609"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Aut ratione officia repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.201906"], ["updated_at", "2020-05-05 17:06:44.201906"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Darin Friesen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GyEPwgD.OKc1Lq7ZYRYzg.xaWnK4qAlQ0ONc1ZIERBzQSFrtxHOdO"], ["created_at", "2020-05-05 17:06:44.204625"], ["updated_at", "2020-05-05 17:06:44.204625"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:44 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.51ms)
+Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.3ms | Allocations: 2846)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:06:44 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Fugit repudiandae voluptas assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.226661"], ["updated_at", "2020-05-05 17:06:44.226661"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Quis voluptas dolores eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.230444"], ["updated_at", "2020-05-05 17:06:44.230444"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Eaque veniam dolor illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.232070"], ["updated_at", "2020-05-05 17:06:44.232070"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Odit dolorum incidunt facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.233677"], ["updated_at", "2020-05-05 17:06:44.233677"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Aperiam ut minima voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.235002"], ["updated_at", "2020-05-05 17:06:44.235002"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Necessitatibus magnam dolor consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.236312"], ["updated_at", "2020-05-05 17:06:44.236312"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minus"], ["description", "Non quia eveniet et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.237921"], ["updated_at", "2020-05-05 17:06:44.237921"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Eum rerum dolor fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.239517"], ["updated_at", "2020-05-05 17:06:44.239517"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Eum nihil non rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.240746"], ["updated_at", "2020-05-05 17:06:44.240746"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Quia sed voluptates perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:06:44.242002"], ["updated_at", "2020-05-05 17:06:44.242002"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Shea Schamberger Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/pKvjPRxJiVMfUpfFlA/Weci5mZabtBO3ejnV6L4m37Pxrcc37JEO"], ["created_at", "2020-05-05 17:06:44.244667"], ["updated_at", "2020-05-05 17:06:44.244667"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:44 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.56ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:06:44 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (10.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (150.9ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (116.8ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (169.9ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (133.0ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (179.9ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (168.9ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (177.8ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iste"], ["description", "Asperiores consequuntur excepturi accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.574245"], ["updated_at", "2020-05-05 17:10:06.574245"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Placeat sit numquam quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.578764"], ["updated_at", "2020-05-05 17:10:06.578764"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Excepturi atque ut tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.581797"], ["updated_at", "2020-05-05 17:10:06.581797"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Vero possimus ut laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.595349"], ["updated_at", "2020-05-05 17:10:06.595349"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Earum accusamus non cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.597206"], ["updated_at", "2020-05-05 17:10:06.597206"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Sed consectetur eum consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.598537"], ["updated_at", "2020-05-05 17:10:06.598537"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Dolore sed et voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.599851"], ["updated_at", "2020-05-05 17:10:06.599851"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "totam"], ["description", "Impedit eum delectus odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.601248"], ["updated_at", "2020-05-05 17:10:06.601248"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Accusantium culpa et sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.602595"], ["updated_at", "2020-05-05 17:10:06.602595"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Quo cum aut excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.603904"], ["updated_at", "2020-05-05 17:10:06.603904"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Corrinne Parisian"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BqIxeaZspRrxhpJJZXyLLux2GXM.qNuozxdSdYqGZ0VG83Fg92myq"], ["created_at", "2020-05-05 17:10:06.623174"], ["updated_at", "2020-05-05 17:10:06.623174"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.68ms)
+Completed 200 OK in 24ms (Views: 15.5ms | ActiveRecord: 0.4ms | Allocations: 4086)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Placeat incidunt vel voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.761923"], ["updated_at", "2020-05-05 17:10:06.761923"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Iusto fugit tenetur voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.764986"], ["updated_at", "2020-05-05 17:10:06.764986"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Pariatur sunt voluptatum incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.767678"], ["updated_at", "2020-05-05 17:10:06.767678"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "similique"], ["description", "Sequi quae autem nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.769400"], ["updated_at", "2020-05-05 17:10:06.769400"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Optio deserunt esse sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.770730"], ["updated_at", "2020-05-05 17:10:06.770730"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Quia quidem voluptas consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.772194"], ["updated_at", "2020-05-05 17:10:06.772194"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Ipsa laudantium aliquam perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.773896"], ["updated_at", "2020-05-05 17:10:06.773896"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Fuga quia quidem sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.776151"], ["updated_at", "2020-05-05 17:10:06.776151"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Autem optio in suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.777508"], ["updated_at", "2020-05-05 17:10:06.777508"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Quaerat assumenda in voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.778801"], ["updated_at", "2020-05-05 17:10:06.778801"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Kenneth Toy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dqMCegLXNLRebK/PkK2NN.FB/hM3WGOW/mYWjv6i54XvipEMxXF0S"], ["created_at", "2020-05-05 17:10:06.781391"], ["updated_at", "2020-05-05 17:10:06.781391"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.05ms)
+Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms | Allocations: 2844)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Culpa nobis quidem molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.798548"], ["updated_at", "2020-05-05 17:10:06.798548"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Nihil et reprehenderit quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.802357"], ["updated_at", "2020-05-05 17:10:06.802357"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Sapiente voluptatum similique vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.804052"], ["updated_at", "2020-05-05 17:10:06.804052"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Impedit rem est sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.805401"], ["updated_at", "2020-05-05 17:10:06.805401"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Quo blanditiis natus perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.806802"], ["updated_at", "2020-05-05 17:10:06.806802"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Impedit rem explicabo assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.808608"], ["updated_at", "2020-05-05 17:10:06.808608"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Voluptatem voluptas iure rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.810835"], ["updated_at", "2020-05-05 17:10:06.810835"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Placeat vel asperiores voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.813119"], ["updated_at", "2020-05-05 17:10:06.813119"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "In dolores cum labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.814596"], ["updated_at", "2020-05-05 17:10:06.814596"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Quibusdam necessitatibus cupiditate voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.816451"], ["updated_at", "2020-05-05 17:10:06.816451"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mable Lockman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/RxxrUuW33wvFXw3N3Q8k.Xn.5hW2onqEYp03czJK.ypiR9cJV4Ge"], ["created_at", "2020-05-05 17:10:06.819578"], ["updated_at", "2020-05-05 17:10:06.819578"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.22ms)
+Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2845)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:10:06 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (24.0ms)
+Completed 200 OK in 106ms (Views: 32.8ms | ActiveRecord: 0.8ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Qui quis dolore nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.944095"], ["updated_at", "2020-05-05 17:10:06.944095"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "In quibusdam qui distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.947439"], ["updated_at", "2020-05-05 17:10:06.947439"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Ipsum nesciunt et quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.949869"], ["updated_at", "2020-05-05 17:10:06.949869"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quaerat"], ["description", "Veniam sit dolor et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.951586"], ["updated_at", "2020-05-05 17:10:06.951586"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "commodi"], ["description", "In sequi sed sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.953605"], ["updated_at", "2020-05-05 17:10:06.953605"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Quasi accusantium et expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.955949"], ["updated_at", "2020-05-05 17:10:06.955949"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Reprehenderit minus esse magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.958034"], ["updated_at", "2020-05-05 17:10:06.958034"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Ea aliquid et nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.959314"], ["updated_at", "2020-05-05 17:10:06.959314"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Non assumenda atque debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.960630"], ["updated_at", "2020-05-05 17:10:06.960630"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Officia dolor rerum velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.961890"], ["updated_at", "2020-05-05 17:10:06.961890"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Elmer Cummerata"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4YbynCnvQ2mNNRP2s5o9dObAr/wTj9dOX.qofXZY9ix1GStzNNeL2"], ["created_at", "2020-05-05 17:10:06.964450"], ["updated_at", "2020-05-05 17:10:06.964450"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.83ms)
+Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:10:06 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.21ms)
+Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.2ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Quia quos neque commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.986819"], ["updated_at", "2020-05-05 17:10:06.986819"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "a"], ["description", "Voluptatibus facilis ut amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.990390"], ["updated_at", "2020-05-05 17:10:06.990390"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Debitis veniam aut doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.992402"], ["updated_at", "2020-05-05 17:10:06.992402"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "In et illo beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.993840"], ["updated_at", "2020-05-05 17:10:06.993840"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Nam quia mollitia in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.995676"], ["updated_at", "2020-05-05 17:10:06.995676"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Maxime cupiditate cumque ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.997913"], ["updated_at", "2020-05-05 17:10:06.997913"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Et dolores commodi eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:06.999217"], ["updated_at", "2020-05-05 17:10:06.999217"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Quasi autem pariatur qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.000643"], ["updated_at", "2020-05-05 17:10:07.000643"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Earum atque odio iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.001951"], ["updated_at", "2020-05-05 17:10:07.001951"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Voluptate animi illo quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.003269"], ["updated_at", "2020-05-05 17:10:07.003269"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Nereida Miller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EZc4ZxthYar4XoyNdz5Z9uuGe.GC70yPR67/37QEldv2GdviftZLm"], ["created_at", "2020-05-05 17:10:07.006046"], ["updated_at", "2020-05-05 17:10:07.006046"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.69ms)
+Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.3ms | Allocations: 2842)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:10:07 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (4.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Quo a blanditiis saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.026852"], ["updated_at", "2020-05-05 17:10:07.026852"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Inventore nihil aut deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.029904"], ["updated_at", "2020-05-05 17:10:07.029904"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Velit voluptatem placeat debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.031868"], ["updated_at", "2020-05-05 17:10:07.031868"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Dicta sit et qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.034112"], ["updated_at", "2020-05-05 17:10:07.034112"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Et ut optio magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.035610"], ["updated_at", "2020-05-05 17:10:07.035610"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Recusandae impedit expedita tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.037156"], ["updated_at", "2020-05-05 17:10:07.037156"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Laborum totam reprehenderit qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.039571"], ["updated_at", "2020-05-05 17:10:07.039571"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Quia aliquam corporis quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.041111"], ["updated_at", "2020-05-05 17:10:07.041111"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Rerum voluptate adipisci molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.042531"], ["updated_at", "2020-05-05 17:10:07.042531"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Error eius et tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.043798"], ["updated_at", "2020-05-05 17:10:07.043798"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Shawana Terry"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dlFQaV0.boefTj/eFdx3PeMIdxn0g6QxDiwJjoPvYpgbeis9fl8Z2"], ["created_at", "2020-05-05 17:10:07.046554"], ["updated_at", "2020-05-05 17:10:07.046554"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.44ms)
+Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms | Allocations: 2842)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:10:07 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Earum aliquid facere et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.076224"], ["updated_at", "2020-05-05 17:10:07.076224"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Rerum aut porro quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.079461"], ["updated_at", "2020-05-05 17:10:07.079461"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "hic"], ["description", "Voluptas qui ipsam et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.081859"], ["updated_at", "2020-05-05 17:10:07.081859"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Voluptate neque velit repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.083515"], ["updated_at", "2020-05-05 17:10:07.083515"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Cumque incidunt tempore voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.084936"], ["updated_at", "2020-05-05 17:10:07.084936"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Voluptatem laborum magni eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.086347"], ["updated_at", "2020-05-05 17:10:07.086347"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Veritatis harum neque sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.087769"], ["updated_at", "2020-05-05 17:10:07.087769"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Quos aperiam aliquam non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.089207"], ["updated_at", "2020-05-05 17:10:07.089207"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Sequi atque quod ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.091488"], ["updated_at", "2020-05-05 17:10:07.091488"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Alias veniam consequatur exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.093999"], ["updated_at", "2020-05-05 17:10:07.093999"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Jerilyn Kerluke DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LK/cEPyB.9B5n1CSqoy8Y.jso3GS29MTm0BkcI7yVfH8LQmlZgXKm"], ["created_at", "2020-05-05 17:10:07.096889"], ["updated_at", "2020-05-05 17:10:07.096889"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.41ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 74ms (Views: 0.5ms | ActiveRecord: 0.7ms | Allocations: 5749)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Excepturi ut eligendi est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.297442"], ["updated_at", "2020-05-05 17:10:07.297442"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nisi"], ["description", "Necessitatibus doloribus enim corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.300775"], ["updated_at", "2020-05-05 17:10:07.300775"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Autem cupiditate iusto doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.302611"], ["updated_at", "2020-05-05 17:10:07.302611"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Reprehenderit ad at dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.304291"], ["updated_at", "2020-05-05 17:10:07.304291"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Ut quibusdam veritatis vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.305685"], ["updated_at", "2020-05-05 17:10:07.305685"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Illo dolorem quod sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.307303"], ["updated_at", "2020-05-05 17:10:07.307303"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Molestiae maiores dolor excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.308620"], ["updated_at", "2020-05-05 17:10:07.308620"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Ipsam consequatur dolorum velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.309936"], ["updated_at", "2020-05-05 17:10:07.309936"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Eveniet et perspiciatis inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.311619"], ["updated_at", "2020-05-05 17:10:07.311619"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Modi quibusdam fuga quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.313230"], ["updated_at", "2020-05-05 17:10:07.313230"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Sheri Douglas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zDru0G7JpM2DmX6gDiyKFerfOzsAFQbeVkxVGOhwVGb68jMeYzdOq"], ["created_at", "2020-05-05 17:10:07.316153"], ["updated_at", "2020-05-05 17:10:07.316153"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.65ms)
+Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.4ms | Allocations: 2845)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 7ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3300)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Cum tenetur minus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.349636"], ["updated_at", "2020-05-05 17:10:07.349636"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Labore ut distinctio quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.353277"], ["updated_at", "2020-05-05 17:10:07.353277"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Placeat qui voluptatibus qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.355953"], ["updated_at", "2020-05-05 17:10:07.355953"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Eum exercitationem laudantium omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.359612"], ["updated_at", "2020-05-05 17:10:07.359612"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Quia eius et temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.361567"], ["updated_at", "2020-05-05 17:10:07.361567"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Et dignissimos aspernatur adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.363024"], ["updated_at", "2020-05-05 17:10:07.363024"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Laborum est molestiae ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.364527"], ["updated_at", "2020-05-05 17:10:07.364527"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vero"], ["description", "Facilis cum quibusdam sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.366252"], ["updated_at", "2020-05-05 17:10:07.366252"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Et sunt reprehenderit ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.367717"], ["updated_at", "2020-05-05 17:10:07.367717"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nemo"], ["description", "Dolorum libero minus hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.369164"], ["updated_at", "2020-05-05 17:10:07.369164"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Fidel Kub"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CfSdnYQ0QJH0XPZfXLk4l.ZeKUl1zP/ptz6rKSHkBcu09h3Oy5hre"], ["created_at", "2020-05-05 17:10:07.372962"], ["updated_at", "2020-05-05 17:10:07.372962"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.42ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2845)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms)
+Completed 422 Unprocessable Entity in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 334)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Similique fuga minima eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.400284"], ["updated_at", "2020-05-05 17:10:07.400284"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "occaecati"], ["description", "Consequuntur libero facilis dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.404465"], ["updated_at", "2020-05-05 17:10:07.404465"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Unde repellat tenetur soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.406282"], ["updated_at", "2020-05-05 17:10:07.406282"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Quo sit fugiat ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.407741"], ["updated_at", "2020-05-05 17:10:07.407741"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Cum sapiente sunt sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.409151"], ["updated_at", "2020-05-05 17:10:07.409151"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Et beatae labore necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.410814"], ["updated_at", "2020-05-05 17:10:07.410814"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Eaque quam enim harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.413622"], ["updated_at", "2020-05-05 17:10:07.413622"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Reiciendis dignissimos doloribus totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.416666"], ["updated_at", "2020-05-05 17:10:07.416666"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Ut dolorem impedit sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.418643"], ["updated_at", "2020-05-05 17:10:07.418643"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Dolore neque voluptate eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:07.420128"], ["updated_at", "2020-05-05 17:10:07.420128"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Alise Emmerich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tdFpur583jckMjeB/5kZcetYdAolPFVzlI7ymIWqs7R5Wf05PtoMu"], ["created_at", "2020-05-05 17:10:07.422812"], ["updated_at", "2020-05-05 17:10:07.422812"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.29ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.7ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (129.0ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (92.2ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.9ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (1.0ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (116.7ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (123.5ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (98.1ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (95.7ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (86.4ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Sit voluptates quae magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.710038"], ["updated_at", "2020-05-05 17:10:45.710038"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "amet"], ["description", "Commodi quis praesentium sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.717544"], ["updated_at", "2020-05-05 17:10:45.717544"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Soluta inventore sequi quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.719643"], ["updated_at", "2020-05-05 17:10:45.719643"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Velit et quia labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.732927"], ["updated_at", "2020-05-05 17:10:45.732927"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Eligendi quos quas voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.734704"], ["updated_at", "2020-05-05 17:10:45.734704"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "similique"], ["description", "Nobis et repudiandae est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.736236"], ["updated_at", "2020-05-05 17:10:45.736236"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Et quidem ipsam qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.737665"], ["updated_at", "2020-05-05 17:10:45.737665"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Nemo sit mollitia non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.739185"], ["updated_at", "2020-05-05 17:10:45.739185"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Tenetur temporibus est rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.740630"], ["updated_at", "2020-05-05 17:10:45.740630"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Consequatur aut autem quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.742016"], ["updated_at", "2020-05-05 17:10:45.742016"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mrs. Franchesca Kertzmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WGPxeTBZxvcNQKGP9Sj/AefyPq6QMbsAr7ZGbxGffEjCtbX6034i2"], ["created_at", "2020-05-05 17:10:45.756825"], ["updated_at", "2020-05-05 17:10:45.756825"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:45 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.56ms)
+Completed 200 OK in 13ms (Views: 10.1ms | ActiveRecord: 0.5ms | Allocations: 4084)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Vel inventore necessitatibus ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.822597"], ["updated_at", "2020-05-05 17:10:45.822597"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Eum qui ad aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.826787"], ["updated_at", "2020-05-05 17:10:45.826787"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Quis et necessitatibus odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.828836"], ["updated_at", "2020-05-05 17:10:45.828836"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Ut modi qui vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.830170"], ["updated_at", "2020-05-05 17:10:45.830170"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Officiis dolores aliquam reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.831452"], ["updated_at", "2020-05-05 17:10:45.831452"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Dolorem nihil quia nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.832742"], ["updated_at", "2020-05-05 17:10:45.832742"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Magni quia ab ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.834025"], ["updated_at", "2020-05-05 17:10:45.834025"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Animi dolorem aperiam esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.835407"], ["updated_at", "2020-05-05 17:10:45.835407"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Doloribus distinctio laboriosam repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.836734"], ["updated_at", "2020-05-05 17:10:45.836734"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eius"], ["description", "Occaecati dolores cumque laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.837958"], ["updated_at", "2020-05-05 17:10:45.837958"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ty Stanton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4d14BpivxOBhHuKIBIudsOLFmp2uA5tZQ9DYE81.8RSuQihsYzXzK"], ["created_at", "2020-05-05 17:10:45.841150"], ["updated_at", "2020-05-05 17:10:45.841150"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:45 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.23ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2843)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Delectus est laudantium optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.859391"], ["updated_at", "2020-05-05 17:10:45.859391"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsam"], ["description", "Quia aut corrupti est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.863660"], ["updated_at", "2020-05-05 17:10:45.863660"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "a"], ["description", "Eum sed vero et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.865309"], ["updated_at", "2020-05-05 17:10:45.865309"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloribus"], ["description", "Tenetur et neque repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.866677"], ["updated_at", "2020-05-05 17:10:45.866677"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Ipsa est corporis aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.868577"], ["updated_at", "2020-05-05 17:10:45.868577"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Voluptate qui vitae libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.870170"], ["updated_at", "2020-05-05 17:10:45.870170"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Ducimus voluptate dignissimos rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.871463"], ["updated_at", "2020-05-05 17:10:45.871463"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Explicabo vitae autem voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.872747"], ["updated_at", "2020-05-05 17:10:45.872747"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Voluptatem libero occaecati voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.874245"], ["updated_at", "2020-05-05 17:10:45.874245"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Eum mollitia neque id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.876138"], ["updated_at", "2020-05-05 17:10:45.876138"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Jerold Armstrong"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hGv9/r7cGEamiBaW6CXp6.rx1xidhs7Nri4yMv0kmpHygDwXsuvHi"], ["created_at", "2020-05-05 17:10:45.879408"], ["updated_at", "2020-05-05 17:10:45.879408"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:45 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.08ms)
+Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.3ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:10:45 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (11.99ms)
+Completed 200 OK in 51ms (Views: 16.2ms | ActiveRecord: 0.7ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Quis recusandae et tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.950611"], ["updated_at", "2020-05-05 17:10:45.950611"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Necessitatibus qui et saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.954700"], ["updated_at", "2020-05-05 17:10:45.954700"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Et alias molestiae ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.956536"], ["updated_at", "2020-05-05 17:10:45.956536"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Quas doloribus eos necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.957946"], ["updated_at", "2020-05-05 17:10:45.957946"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Ullam aut non dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.959280"], ["updated_at", "2020-05-05 17:10:45.959280"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Voluptatem fugiat dolores sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.960643"], ["updated_at", "2020-05-05 17:10:45.960643"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Voluptatum provident nobis est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.963097"], ["updated_at", "2020-05-05 17:10:45.963097"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Neque quo similique incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.965570"], ["updated_at", "2020-05-05 17:10:45.965570"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Id nam rerum maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.967087"], ["updated_at", "2020-05-05 17:10:45.967087"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Aut rem suscipit omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.968457"], ["updated_at", "2020-05-05 17:10:45.968457"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Pauletta Simonis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AhjeAMS9V6Hu1WRxROWLvOrjlUV23w/3pR7BL9ksQ1kGgWD0PHZnS"], ["created_at", "2020-05-05 17:10:45.971053"], ["updated_at", "2020-05-05 17:10:45.971053"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:45 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.49ms)
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:10:45 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.28ms)
+Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.2ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (12.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "In adipisci dolorum ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:45.999393"], ["updated_at", "2020-05-05 17:10:45.999393"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Hic asperiores inventore et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.003333"], ["updated_at", "2020-05-05 17:10:46.003333"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Incidunt nihil accusamus consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.005132"], ["updated_at", "2020-05-05 17:10:46.005132"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Quos placeat molestias at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.006587"], ["updated_at", "2020-05-05 17:10:46.006587"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Unde quaerat autem earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.008021"], ["updated_at", "2020-05-05 17:10:46.008021"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Ut nisi mollitia at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.009366"], ["updated_at", "2020-05-05 17:10:46.009366"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Veniam beatae ut error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.010786"], ["updated_at", "2020-05-05 17:10:46.010786"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "amet"], ["description", "Praesentium qui vel in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.012094"], ["updated_at", "2020-05-05 17:10:46.012094"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Molestiae molestiae et voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.013532"], ["updated_at", "2020-05-05 17:10:46.013532"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Dignissimos minima voluptas numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.014896"], ["updated_at", "2020-05-05 17:10:46.014896"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Dorian Bauch III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$p80QZffCsIXt0Oe.p1XRieCqNvwdP/HSuiOi.96LFbwFWnBFyrFni"], ["created_at", "2020-05-05 17:10:46.017616"], ["updated_at", "2020-05-05 17:10:46.017616"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.28ms)
+Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:10:46 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Reiciendis in tenetur dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.039301"], ["updated_at", "2020-05-05 17:10:46.039301"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Ut itaque sunt hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.043308"], ["updated_at", "2020-05-05 17:10:46.043308"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Aut sit veniam blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.045746"], ["updated_at", "2020-05-05 17:10:46.045746"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Cumque corrupti dolores odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.047623"], ["updated_at", "2020-05-05 17:10:46.047623"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Velit voluptatibus in non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.049075"], ["updated_at", "2020-05-05 17:10:46.049075"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Autem quasi ullam in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.050745"], ["updated_at", "2020-05-05 17:10:46.050745"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odio"], ["description", "Nesciunt architecto sapiente voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.052173"], ["updated_at", "2020-05-05 17:10:46.052173"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Mollitia nisi qui est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.053660"], ["updated_at", "2020-05-05 17:10:46.053660"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Quisquam ipsa ut doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.055025"], ["updated_at", "2020-05-05 17:10:46.055025"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Exercitationem ut voluptatibus delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.056337"], ["updated_at", "2020-05-05 17:10:46.056337"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Arnoldo Shanahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UoBM4jmtEdzRn4ZyM7LZauxt8oukvoGzb5rKfbptzXSaOPYZHZAMy"], ["created_at", "2020-05-05 17:10:46.058898"], ["updated_at", "2020-05-05 17:10:46.058898"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (2.98ms)
+Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:10:46 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Illum recusandae in eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.086625"], ["updated_at", "2020-05-05 17:10:46.086625"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Minus occaecati sequi magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.089935"], ["updated_at", "2020-05-05 17:10:46.089935"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Maxime atque dolor nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.091842"], ["updated_at", "2020-05-05 17:10:46.091842"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Sit sint aperiam consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.093344"], ["updated_at", "2020-05-05 17:10:46.093344"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Assumenda modi similique aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.095191"], ["updated_at", "2020-05-05 17:10:46.095191"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Pariatur quis quidem consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.096961"], ["updated_at", "2020-05-05 17:10:46.096961"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Repudiandae cum nostrum eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.098276"], ["updated_at", "2020-05-05 17:10:46.098276"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Nobis occaecati debitis vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.099644"], ["updated_at", "2020-05-05 17:10:46.099644"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Voluptatum reprehenderit aut sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.101008"], ["updated_at", "2020-05-05 17:10:46.101008"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Eos laboriosam sapiente sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.102740"], ["updated_at", "2020-05-05 17:10:46.102740"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Orville Dickens"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bbf9dULOCZG4Y7tlraNOPuczB5VPMXM8FxjlqqqT0ZvndxSLef1tO"], ["created_at", "2020-05-05 17:10:46.105890"], ["updated_at", "2020-05-05 17:10:46.105890"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.27ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2846)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 19ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 5749)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Molestiae quos minus eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.188698"], ["updated_at", "2020-05-05 17:10:46.188698"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Qui exercitationem et soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.191670"], ["updated_at", "2020-05-05 17:10:46.191670"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Culpa consectetur aut veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.193030"], ["updated_at", "2020-05-05 17:10:46.193030"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Error excepturi sed voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.194335"], ["updated_at", "2020-05-05 17:10:46.194335"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Atque quaerat at nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.195878"], ["updated_at", "2020-05-05 17:10:46.195878"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eius"], ["description", "Dignissimos qui vel est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.197586"], ["updated_at", "2020-05-05 17:10:46.197586"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Rem exercitationem qui corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.199243"], ["updated_at", "2020-05-05 17:10:46.199243"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Officiis voluptas fugiat quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.200601"], ["updated_at", "2020-05-05 17:10:46.200601"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Dolore mollitia voluptatem consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.203165"], ["updated_at", "2020-05-05 17:10:46.203165"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Dolorum similique aut deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.205666"], ["updated_at", "2020-05-05 17:10:46.205666"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Raphael Dach"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Gdd5DKo2ZcGDoEHRu7uHK.elFCfeWTD0OQq/IiZGdz0ptjTMI9B3a"], ["created_at", "2020-05-05 17:10:46.208919"], ["updated_at", "2020-05-05 17:10:46.208919"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.69ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2845)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3300)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Debitis dolor suscipit quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.234028"], ["updated_at", "2020-05-05 17:10:46.234028"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Ea earum vel similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.238040"], ["updated_at", "2020-05-05 17:10:46.238040"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Maiores ipsa atque deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.239589"], ["updated_at", "2020-05-05 17:10:46.239589"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Tempora illum aut delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.240943"], ["updated_at", "2020-05-05 17:10:46.240943"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Doloremque qui vel aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.243940"], ["updated_at", "2020-05-05 17:10:46.243940"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Et voluptas est accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.247316"], ["updated_at", "2020-05-05 17:10:46.247316"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Itaque exercitationem voluptas a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.249462"], ["updated_at", "2020-05-05 17:10:46.249462"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Sed quia deserunt officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.250811"], ["updated_at", "2020-05-05 17:10:46.250811"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Id consequatur laboriosam deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.252160"], ["updated_at", "2020-05-05 17:10:46.252160"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Vel adipisci consequatur eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.253888"], ["updated_at", "2020-05-05 17:10:46.253888"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Frederic Anderson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wLTAEPA.H4YefYJ5FH5XAubg/lzn5ZfNu4ibLFinzQCOY1X7ghX0S"], ["created_at", "2020-05-05 17:10:46.256585"], ["updated_at", "2020-05-05 17:10:46.256585"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.16ms)
+Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3721)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Et inventore nam voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.287152"], ["updated_at", "2020-05-05 17:10:46.287152"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Dolores porro qui non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.290510"], ["updated_at", "2020-05-05 17:10:46.290510"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Error et modi qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.292282"], ["updated_at", "2020-05-05 17:10:46.292282"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Consequuntur officiis ut sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.293918"], ["updated_at", "2020-05-05 17:10:46.293918"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Asperiores consequatur eius sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.332945"], ["updated_at", "2020-05-05 17:10:46.332945"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Dolores quos qui consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.335088"], ["updated_at", "2020-05-05 17:10:46.335088"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Maiores voluptatem doloribus dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.337019"], ["updated_at", "2020-05-05 17:10:46.337019"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Rem ex iure et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.339173"], ["updated_at", "2020-05-05 17:10:46.339173"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iure"], ["description", "Id dolorem omnis quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.340547"], ["updated_at", "2020-05-05 17:10:46.340547"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Porro optio veniam molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:10:46.341849"], ["updated_at", "2020-05-05 17:10:46.341849"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Barney Gislason"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oiJQ0WRIwr/yApwAU.CvcOBabKzzVG7N3qP4oguYkxuC9CjIw03qu"], ["created_at", "2020-05-05 17:10:46.345126"], ["updated_at", "2020-05-05 17:10:46.345126"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.32ms)
+Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 422 Unprocessable Entity in 5ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 3677)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (136.9ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (90.2ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (88.3ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (74.3ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (96.7ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (99.0ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (82.4ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.3ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Quidem quia tenetur omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.650607"], ["updated_at", "2020-05-05 17:11:09.650607"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Harum est autem distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.654515"], ["updated_at", "2020-05-05 17:11:09.654515"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Repellat quia consequatur inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.656551"], ["updated_at", "2020-05-05 17:11:09.656551"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Itaque non aut aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.658734"], ["updated_at", "2020-05-05 17:11:09.658734"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Corrupti accusantium nisi dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.671807"], ["updated_at", "2020-05-05 17:11:09.671807"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Natus tenetur quaerat eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.673554"], ["updated_at", "2020-05-05 17:11:09.673554"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quae"], ["description", "Omnis aut sunt voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.675015"], ["updated_at", "2020-05-05 17:11:09.675015"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Ipsa eum non velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.676466"], ["updated_at", "2020-05-05 17:11:09.676466"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "adipisci"], ["description", "Doloribus occaecati repudiandae facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.677949"], ["updated_at", "2020-05-05 17:11:09.677949"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Eaque quia voluptatum nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.679446"], ["updated_at", "2020-05-05 17:11:09.679446"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Juan Halvorson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$d67WlPV2Vcn5bkCsILZHVOuW8IUFHanMW804IDu.3PQVAOLbsTdNW"], ["created_at", "2020-05-05 17:11:09.695219"], ["updated_at", "2020-05-05 17:11:09.695219"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:09 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.61ms)
+Completed 200 OK in 13ms (Views: 10.2ms | ActiveRecord: 0.4ms | Allocations: 4085)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Consequatur labore ut accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.760459"], ["updated_at", "2020-05-05 17:11:09.760459"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Saepe velit ex nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.764881"], ["updated_at", "2020-05-05 17:11:09.764881"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Consequuntur ut dolorem fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.766674"], ["updated_at", "2020-05-05 17:11:09.766674"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Nihil ratione est illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.768000"], ["updated_at", "2020-05-05 17:11:09.768000"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Eaque repellendus aut hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.769296"], ["updated_at", "2020-05-05 17:11:09.769296"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Doloribus omnis ea eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.770574"], ["updated_at", "2020-05-05 17:11:09.770574"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cum"], ["description", "Eaque debitis eum eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.771926"], ["updated_at", "2020-05-05 17:11:09.771926"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Quasi vel velit placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.773155"], ["updated_at", "2020-05-05 17:11:09.773155"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Et velit dignissimos dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.774436"], ["updated_at", "2020-05-05 17:11:09.774436"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Voluptate enim excepturi minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.775919"], ["updated_at", "2020-05-05 17:11:09.775919"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Miss Santiago Hayes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vc7J1rolZvYpPNVcz/nhb.UJabXpvVmS8SOV4z46fnXLFTUqM3Oh."], ["created_at", "2020-05-05 17:11:09.778678"], ["updated_at", "2020-05-05 17:11:09.778678"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:09 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.32ms)
+Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.4ms | Allocations: 2845)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Dolorem ratione repudiandae commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.797247"], ["updated_at", "2020-05-05 17:11:09.797247"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Optio aut nihil dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.800547"], ["updated_at", "2020-05-05 17:11:09.800547"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Earum quisquam eos sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.803412"], ["updated_at", "2020-05-05 17:11:09.803412"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloribus"], ["description", "Itaque animi molestias ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.805266"], ["updated_at", "2020-05-05 17:11:09.805266"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "totam"], ["description", "Saepe dolorem voluptas et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.807081"], ["updated_at", "2020-05-05 17:11:09.807081"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Id omnis fugiat sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.808665"], ["updated_at", "2020-05-05 17:11:09.808665"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Eligendi ullam alias ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.809919"], ["updated_at", "2020-05-05 17:11:09.809919"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Praesentium itaque ut inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.811425"], ["updated_at", "2020-05-05 17:11:09.811425"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Labore ex illo at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.813105"], ["updated_at", "2020-05-05 17:11:09.813105"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Tempora dolorum quod perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.814977"], ["updated_at", "2020-05-05 17:11:09.814977"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Kris Fadel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UImtRuxPrz85lMFSbu8Xbu/rGnQMBbY.blLxqAu7coUGMim9Q9OD2"], ["created_at", "2020-05-05 17:11:09.817849"], ["updated_at", "2020-05-05 17:11:09.817849"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:09 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.68ms)
+Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:11:09 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.54ms)
+Completed 200 OK in 52ms (Views: 17.0ms | ActiveRecord: 0.7ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Repellendus voluptas hic et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.890219"], ["updated_at", "2020-05-05 17:11:09.890219"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Nemo qui id rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.893815"], ["updated_at", "2020-05-05 17:11:09.893815"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Eaque non aut voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.895382"], ["updated_at", "2020-05-05 17:11:09.895382"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Magni cumque distinctio fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.896719"], ["updated_at", "2020-05-05 17:11:09.896719"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Quia in consequatur quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.897987"], ["updated_at", "2020-05-05 17:11:09.897987"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Sit excepturi autem inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.899383"], ["updated_at", "2020-05-05 17:11:09.899383"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Et eaque ut adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.900734"], ["updated_at", "2020-05-05 17:11:09.900734"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Nihil iste facilis architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.902121"], ["updated_at", "2020-05-05 17:11:09.902121"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Qui illo sunt assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.904817"], ["updated_at", "2020-05-05 17:11:09.904817"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Et sint sit in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.907340"], ["updated_at", "2020-05-05 17:11:09.907340"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ms. Hee Collier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$y4HieIPI2n91uTJ0jJpet.sbOcO4aBFuAn3fOzorVH.U8vK7qvkyO"], ["created_at", "2020-05-05 17:11:09.910087"], ["updated_at", "2020-05-05 17:11:09.910087"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:09 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.49ms)
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2843)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:11:09 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.43ms)
+Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Reprehenderit repudiandae numquam ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.933677"], ["updated_at", "2020-05-05 17:11:09.933677"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Neque eos animi nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.936744"], ["updated_at", "2020-05-05 17:11:09.936744"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Fugit numquam non laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.938174"], ["updated_at", "2020-05-05 17:11:09.938174"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Non officiis odio sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.939611"], ["updated_at", "2020-05-05 17:11:09.939611"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Esse minus aut quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.940939"], ["updated_at", "2020-05-05 17:11:09.940939"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Mollitia sapiente dolorem est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.942412"], ["updated_at", "2020-05-05 17:11:09.942412"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Ratione quod consequatur quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.945239"], ["updated_at", "2020-05-05 17:11:09.945239"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Mollitia repellendus non minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.947812"], ["updated_at", "2020-05-05 17:11:09.947812"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Exercitationem ea consequatur occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.949295"], ["updated_at", "2020-05-05 17:11:09.949295"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Qui veritatis tempora iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.950676"], ["updated_at", "2020-05-05 17:11:09.950676"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Tracey Kirlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4tLl0ZG9Q5yspTSOeZu8UOmPWgdmpDSUNrpPxlMrbLPHSFQXBum1W"], ["created_at", "2020-05-05 17:11:09.953476"], ["updated_at", "2020-05-05 17:11:09.953476"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:09 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.15ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:11:09 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (4.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "at"], ["description", "Porro cum eaque ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.973217"], ["updated_at", "2020-05-05 17:11:09.973217"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Aut nesciunt id necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.977198"], ["updated_at", "2020-05-05 17:11:09.977198"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Laboriosam deserunt quaerat sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.978900"], ["updated_at", "2020-05-05 17:11:09.978900"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Voluptas nihil et ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.980390"], ["updated_at", "2020-05-05 17:11:09.980390"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "In maiores et recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.981885"], ["updated_at", "2020-05-05 17:11:09.981885"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Omnis eum reiciendis sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.983970"], ["updated_at", "2020-05-05 17:11:09.983970"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Assumenda eos ad quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.986864"], ["updated_at", "2020-05-05 17:11:09.986864"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Amet dolores deleniti possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.988710"], ["updated_at", "2020-05-05 17:11:09.988710"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Repellat perferendis est consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.989975"], ["updated_at", "2020-05-05 17:11:09.989975"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Asperiores quia vero pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:09.991268"], ["updated_at", "2020-05-05 17:11:09.991268"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Annie Huel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dUgqFx5yy8APhSuSwhEHZ.zcRVbdYpgoeBGogZcaFsmVXFyDggFAK"], ["created_at", "2020-05-05 17:11:09.993857"], ["updated_at", "2020-05-05 17:11:09.993857"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:09 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.88ms)
+Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:11:10 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Alias exercitationem cupiditate pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.018853"], ["updated_at", "2020-05-05 17:11:10.018853"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Libero laboriosam numquam maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.022679"], ["updated_at", "2020-05-05 17:11:10.022679"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Natus autem est repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.025312"], ["updated_at", "2020-05-05 17:11:10.025312"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "provident"], ["description", "Ut cum error qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.028017"], ["updated_at", "2020-05-05 17:11:10.028017"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Inventore consectetur et molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.029916"], ["updated_at", "2020-05-05 17:11:10.029916"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "occaecati"], ["description", "Consequatur amet eum magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.031350"], ["updated_at", "2020-05-05 17:11:10.031350"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Praesentium dignissimos consequatur quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.032786"], ["updated_at", "2020-05-05 17:11:10.032786"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Officiis dignissimos architecto praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.034366"], ["updated_at", "2020-05-05 17:11:10.034366"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Aliquid ducimus est beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.035771"], ["updated_at", "2020-05-05 17:11:10.035771"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Velit saepe quisquam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.037058"], ["updated_at", "2020-05-05 17:11:10.037058"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Henry Jaskolski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RRmpCjrpuFMacBpKrGE1vuyARzlFBKz1/7dN78tUNpE.5rp7YPReO"], ["created_at", "2020-05-05 17:11:10.039644"], ["updated_at", "2020-05-05 17:11:10.039644"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:10 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.59ms)
+Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.1ms | Allocations: 2845)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:11:10 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.1ms)
+Completed 422 Unprocessable Entity in 20ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 5749)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minus"], ["description", "Ratione dolorum autem voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.129448"], ["updated_at", "2020-05-05 17:11:10.129448"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Aliquid laboriosam similique excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.132490"], ["updated_at", "2020-05-05 17:11:10.132490"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Voluptates doloribus sed asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.134061"], ["updated_at", "2020-05-05 17:11:10.134061"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Vero quia dolor sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.135584"], ["updated_at", "2020-05-05 17:11:10.135584"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Dolores minima similique eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.136884"], ["updated_at", "2020-05-05 17:11:10.136884"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Dicta cumque fuga blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.138178"], ["updated_at", "2020-05-05 17:11:10.138178"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Est eos magni ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.139506"], ["updated_at", "2020-05-05 17:11:10.139506"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Ad maiores ipsam aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.141330"], ["updated_at", "2020-05-05 17:11:10.141330"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Excepturi deserunt alias perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.143330"], ["updated_at", "2020-05-05 17:11:10.143330"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Omnis et nostrum consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.146763"], ["updated_at", "2020-05-05 17:11:10.146763"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mrs. Monnie Predovic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YDAVqiVPMuBUu252LEDLOeau8S88U5XvLNdmPRQZAogwzf107nDCm"], ["created_at", "2020-05-05 17:11:10.151047"], ["updated_at", "2020-05-05 17:11:10.151047"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:10 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.07ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:11:10 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3300)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Et quia officia sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.175666"], ["updated_at", "2020-05-05 17:11:10.175666"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Ut quae nisi a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.178830"], ["updated_at", "2020-05-05 17:11:10.178830"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Deleniti ea nostrum quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.180381"], ["updated_at", "2020-05-05 17:11:10.180381"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "Sit perferendis voluptas amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.182419"], ["updated_at", "2020-05-05 17:11:10.182419"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Quo itaque dicta debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.183956"], ["updated_at", "2020-05-05 17:11:10.183956"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Rerum excepturi molestiae quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.186455"], ["updated_at", "2020-05-05 17:11:10.186455"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Numquam deserunt at illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.188743"], ["updated_at", "2020-05-05 17:11:10.188743"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Cum facere enim aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.190532"], ["updated_at", "2020-05-05 17:11:10.190532"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "At hic laborum voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.191900"], ["updated_at", "2020-05-05 17:11:10.191900"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Nemo facilis iure ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.193354"], ["updated_at", "2020-05-05 17:11:10.193354"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mrs. Herschel O'Connell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pBAXKAlmE1ymlXgvsQ4kmOcAb9ZlH7ZY9srZePpQy1i/dTTwCk/x2"], ["created_at", "2020-05-05 17:11:10.196405"], ["updated_at", "2020-05-05 17:11:10.196405"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:10 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.08ms)
+Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:11:10 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3721)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Necessitatibus vel rerum natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.224275"], ["updated_at", "2020-05-05 17:11:10.224275"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Ab laboriosam voluptatem eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.229595"], ["updated_at", "2020-05-05 17:11:10.229595"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Maiores in porro sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.231440"], ["updated_at", "2020-05-05 17:11:10.231440"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Sunt quia consequatur qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.275147"], ["updated_at", "2020-05-05 17:11:10.275147"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Sit quia nesciunt porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.277368"], ["updated_at", "2020-05-05 17:11:10.277368"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Quibusdam saepe qui aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.281603"], ["updated_at", "2020-05-05 17:11:10.281603"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Est sint tenetur laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.284991"], ["updated_at", "2020-05-05 17:11:10.284991"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Voluptate itaque possimus ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.288246"], ["updated_at", "2020-05-05 17:11:10.288246"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Eos autem quis libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.290410"], ["updated_at", "2020-05-05 17:11:10.290410"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Rerum in architecto consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:11:10.293080"], ["updated_at", "2020-05-05 17:11:10.293080"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mardell Hettinger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OC8uPL66Fa5A3oS63FMySuhlS.C1rEqdchnyl6d.ZEjRBXC/d9SYO"], ["created_at", "2020-05-05 17:11:10.295952"], ["updated_at", "2020-05-05 17:11:10.295952"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:10 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.33ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:11:10 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3677)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (158.4ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (122.0ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (91.4ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (80.5ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (87.4ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (100.5ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (77.4ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Quia magnam optio modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.176108"], ["updated_at", "2020-05-05 17:13:07.176108"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Aut similique ipsum sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.183428"], ["updated_at", "2020-05-05 17:13:07.183428"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Doloremque provident consequatur nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.185565"], ["updated_at", "2020-05-05 17:13:07.185565"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Adipisci ullam qui quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.187546"], ["updated_at", "2020-05-05 17:13:07.187546"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Omnis vel corrupti possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.200793"], ["updated_at", "2020-05-05 17:13:07.200793"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Veritatis sed et molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.202296"], ["updated_at", "2020-05-05 17:13:07.202296"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Corporis eaque assumenda repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.203645"], ["updated_at", "2020-05-05 17:13:07.203645"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Cupiditate omnis est enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.204992"], ["updated_at", "2020-05-05 17:13:07.204992"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Ratione ex quibusdam pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.206330"], ["updated_at", "2020-05-05 17:13:07.206330"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Dolorem et reprehenderit provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.207643"], ["updated_at", "2020-05-05 17:13:07.207643"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Anja Gottlieb"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V7XgXMHyrHuYdRQ4hPXfhuvGITBpUhCOJlM750.MeHScyxheADBFS"], ["created_at", "2020-05-05 17:13:07.222602"], ["updated_at", "2020-05-05 17:13:07.222602"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.37ms)
+Completed 200 OK in 13ms (Views: 9.7ms | ActiveRecord: 0.4ms | Allocations: 4086)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Dignissimos consequuntur neque veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.286794"], ["updated_at", "2020-05-05 17:13:07.286794"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Distinctio perferendis sint ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.290648"], ["updated_at", "2020-05-05 17:13:07.290648"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Fuga veniam dignissimos tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.292268"], ["updated_at", "2020-05-05 17:13:07.292268"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Quae ut aut vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.293620"], ["updated_at", "2020-05-05 17:13:07.293620"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Sit qui consequatur qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.295030"], ["updated_at", "2020-05-05 17:13:07.295030"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Cumque vel enim delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.296421"], ["updated_at", "2020-05-05 17:13:07.296421"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Accusamus distinctio et molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.297703"], ["updated_at", "2020-05-05 17:13:07.297703"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Ut voluptate assumenda fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.299483"], ["updated_at", "2020-05-05 17:13:07.299483"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "modi"], ["description", "Qui repellendus odit occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.301846"], ["updated_at", "2020-05-05 17:13:07.301846"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Corrupti perspiciatis vero qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.303583"], ["updated_at", "2020-05-05 17:13:07.303583"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Leo Considine"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oxLccEsiaW2NQUkdFCZNg.AUAq0ONOzUR7xaYbY7QkiS9jNX6heq6"], ["created_at", "2020-05-05 17:13:07.306375"], ["updated_at", "2020-05-05 17:13:07.306375"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.47ms)
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2845)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Numquam placeat odio accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.324733"], ["updated_at", "2020-05-05 17:13:07.324733"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Autem inventore commodi assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.328483"], ["updated_at", "2020-05-05 17:13:07.328483"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Voluptatem nesciunt voluptas nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.330270"], ["updated_at", "2020-05-05 17:13:07.330270"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Nesciunt dolorem accusantium hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.331562"], ["updated_at", "2020-05-05 17:13:07.331562"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Libero ut maiores molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.332842"], ["updated_at", "2020-05-05 17:13:07.332842"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Eligendi amet ipsam molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.334215"], ["updated_at", "2020-05-05 17:13:07.334215"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Odit quasi sint ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.335584"], ["updated_at", "2020-05-05 17:13:07.335584"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Quaerat dolorem dolorem excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.336818"], ["updated_at", "2020-05-05 17:13:07.336818"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Reprehenderit cum beatae velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.338091"], ["updated_at", "2020-05-05 17:13:07.338091"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Odit repudiandae omnis amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.339442"], ["updated_at", "2020-05-05 17:13:07.339442"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mr. Annalisa Waters"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IkzgFLO.mSM0O8KhK3wyyedTICTtN3Ln6XqbQKRA3BlBjN8H3iqIq"], ["created_at", "2020-05-05 17:13:07.345342"], ["updated_at", "2020-05-05 17:13:07.345342"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.23ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2845)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.6ms)
+Completed 200 OK in 51ms (Views: 17.0ms | ActiveRecord: 0.7ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "In pariatur ea illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.415566"], ["updated_at", "2020-05-05 17:13:07.415566"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Tenetur velit consequatur quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.419306"], ["updated_at", "2020-05-05 17:13:07.419306"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Doloribus qui voluptates ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.421470"], ["updated_at", "2020-05-05 17:13:07.421470"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Rerum possimus aut sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.422900"], ["updated_at", "2020-05-05 17:13:07.422900"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Quae voluptas eaque possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.424725"], ["updated_at", "2020-05-05 17:13:07.424725"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Aut unde itaque dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.426918"], ["updated_at", "2020-05-05 17:13:07.426918"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Perspiciatis quaerat perferendis consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.429309"], ["updated_at", "2020-05-05 17:13:07.429309"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Delectus animi provident doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.430789"], ["updated_at", "2020-05-05 17:13:07.430789"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Ut autem nemo praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.432091"], ["updated_at", "2020-05-05 17:13:07.432091"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Voluptates quia eius dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.433382"], ["updated_at", "2020-05-05 17:13:07.433382"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Chong Lakin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0yOD1FCsmkkBFGqlXMqaR.27wuBjMcsrTSg3D2/pIkhlVsXvJXphe"], ["created_at", "2020-05-05 17:13:07.436182"], ["updated_at", "2020-05-05 17:13:07.436182"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.02ms)
+Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 2845)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.31ms)
+Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.2ms | Allocations: 1239)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Dignissimos et aut nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.458537"], ["updated_at", "2020-05-05 17:13:07.458537"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "hic"], ["description", "Et sapiente et dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.462092"], ["updated_at", "2020-05-05 17:13:07.462092"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Incidunt illo officiis dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.464574"], ["updated_at", "2020-05-05 17:13:07.464574"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Sapiente non quo inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.466562"], ["updated_at", "2020-05-05 17:13:07.466562"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Dolorum placeat nobis mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.468569"], ["updated_at", "2020-05-05 17:13:07.468569"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Nihil ratione ea a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.469947"], ["updated_at", "2020-05-05 17:13:07.469947"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Vitae aliquam ea minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.471349"], ["updated_at", "2020-05-05 17:13:07.471349"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Et cupiditate cumque mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.472721"], ["updated_at", "2020-05-05 17:13:07.472721"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Voluptate quos similique reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.474044"], ["updated_at", "2020-05-05 17:13:07.474044"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Consectetur ut harum in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.475523"], ["updated_at", "2020-05-05 17:13:07.475523"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Shala Veum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XnaBeEKWlwGbFvA3cX5XTuqJGNGq.usH4XApQnnBCElRqraCO/1iy"], ["created_at", "2020-05-05 17:13:07.478217"], ["updated_at", "2020-05-05 17:13:07.478217"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.68ms)
+Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Est quasi repellendus aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.499364"], ["updated_at", "2020-05-05 17:13:07.499364"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Quisquam reiciendis voluptatem atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.502621"], ["updated_at", "2020-05-05 17:13:07.502621"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Est tempora minima et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.505177"], ["updated_at", "2020-05-05 17:13:07.505177"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Neque fugit vero dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.506930"], ["updated_at", "2020-05-05 17:13:07.506930"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Cum et laboriosam tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.509196"], ["updated_at", "2020-05-05 17:13:07.509196"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quae"], ["description", "Aut consequatur est nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.510601"], ["updated_at", "2020-05-05 17:13:07.510601"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Quia omnis nemo id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.511931"], ["updated_at", "2020-05-05 17:13:07.511931"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Debitis excepturi alias tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.513212"], ["updated_at", "2020-05-05 17:13:07.513212"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Facere sapiente laborum consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.514615"], ["updated_at", "2020-05-05 17:13:07.514615"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "at"], ["description", "Et ut aperiam nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.516013"], ["updated_at", "2020-05-05 17:13:07.516013"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ms. Jere Carter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yXyUOJr178g2AVxulhMD4exkqgYBqFK39A1cl00dD4FX2XFl0i0bG"], ["created_at", "2020-05-05 17:13:07.518602"], ["updated_at", "2020-05-05 17:13:07.518602"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.78ms)
+Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Et autem velit perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.543478"], ["updated_at", "2020-05-05 17:13:07.543478"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Fugiat repudiandae sit voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.547182"], ["updated_at", "2020-05-05 17:13:07.547182"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Dolorem et similique fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.549617"], ["updated_at", "2020-05-05 17:13:07.549617"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eius"], ["description", "Quae voluptatem ipsum ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.551328"], ["updated_at", "2020-05-05 17:13:07.551328"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Facilis officia saepe voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.552740"], ["updated_at", "2020-05-05 17:13:07.552740"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Est soluta id dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.554202"], ["updated_at", "2020-05-05 17:13:07.554202"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Dolorum pariatur eius voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.555572"], ["updated_at", "2020-05-05 17:13:07.555572"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Omnis aut nobis occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.556853"], ["updated_at", "2020-05-05 17:13:07.556853"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Et sunt asperiores reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.558128"], ["updated_at", "2020-05-05 17:13:07.558128"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "beatae"], ["description", "Ad architecto nihil sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.559506"], ["updated_at", "2020-05-05 17:13:07.559506"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Emerald Marks III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$atEqvtfwyd4tCQz8p8heGO73gcj9JC7clNuICNzqSQ12kzmckR7PW"], ["created_at", "2020-05-05 17:13:07.562387"], ["updated_at", "2020-05-05 17:13:07.562387"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.28ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2845)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 19ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 5749)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minima"], ["description", "Nulla harum iste laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.650912"], ["updated_at", "2020-05-05 17:13:07.650912"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Aperiam distinctio expedita et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.654192"], ["updated_at", "2020-05-05 17:13:07.654192"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Aut vero et velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.656675"], ["updated_at", "2020-05-05 17:13:07.656675"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Qui qui id quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.658070"], ["updated_at", "2020-05-05 17:13:07.658070"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "similique"], ["description", "Quod reprehenderit dolore saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.659402"], ["updated_at", "2020-05-05 17:13:07.659402"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Minima reprehenderit nemo quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.660895"], ["updated_at", "2020-05-05 17:13:07.660895"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Consequatur sint aliquid soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.662804"], ["updated_at", "2020-05-05 17:13:07.662804"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ab"], ["description", "Labore ex in enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.665777"], ["updated_at", "2020-05-05 17:13:07.665777"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Id occaecati qui nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.667807"], ["updated_at", "2020-05-05 17:13:07.667807"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Aut iusto necessitatibus similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.669337"], ["updated_at", "2020-05-05 17:13:07.669337"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Timothy Rodriguez"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$X.bnW3QRgxgUlW2DrnVaq.E9epsXsQzMub1a8Mm9xbcssvK1brjbG"], ["created_at", "2020-05-05 17:13:07.671997"], ["updated_at", "2020-05-05 17:13:07.671997"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.37ms)
+Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3300)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (41.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Doloremque perspiciatis eum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.733945"], ["updated_at", "2020-05-05 17:13:07.733945"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Qui quia dolorem architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.741118"], ["updated_at", "2020-05-05 17:13:07.741118"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minima"], ["description", "Quia blanditiis sint eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.745501"], ["updated_at", "2020-05-05 17:13:07.745501"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "occaecati"], ["description", "Et magnam ut molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.749414"], ["updated_at", "2020-05-05 17:13:07.749414"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Nisi autem aliquam sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.753003"], ["updated_at", "2020-05-05 17:13:07.753003"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odio"], ["description", "Consectetur repellat aliquid consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.757071"], ["updated_at", "2020-05-05 17:13:07.757071"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Et est labore similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.761349"], ["updated_at", "2020-05-05 17:13:07.761349"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Et animi aliquam aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.764581"], ["updated_at", "2020-05-05 17:13:07.764581"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Alias in dolore est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.767263"], ["updated_at", "2020-05-05 17:13:07.767263"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Accusamus deleniti est illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.770335"], ["updated_at", "2020-05-05 17:13:07.770335"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Kathrin Hodkiewicz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8od.r2Hme/3vErpDGsE1huPjmU4nW0xRwqs..Ai531H8NaA/VccFG"], ["created_at", "2020-05-05 17:13:07.774668"], ["updated_at", "2020-05-05 17:13:07.774668"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.39ms)
+Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3721)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Ducimus vitae aut necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.822120"], ["updated_at", "2020-05-05 17:13:07.822120"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Ullam sint possimus magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.826309"], ["updated_at", "2020-05-05 17:13:07.826309"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Hic tempora vel sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.828350"], ["updated_at", "2020-05-05 17:13:07.828350"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odio"], ["description", "Numquam id dolorem accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.831789"], ["updated_at", "2020-05-05 17:13:07.831789"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Labore consequatur et molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.835345"], ["updated_at", "2020-05-05 17:13:07.835345"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Aut soluta labore impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.836843"], ["updated_at", "2020-05-05 17:13:07.836843"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Officia eos consequatur ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.838134"], ["updated_at", "2020-05-05 17:13:07.838134"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Illum veritatis nihil necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.839382"], ["updated_at", "2020-05-05 17:13:07.839382"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Facilis ea omnis soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.841065"], ["updated_at", "2020-05-05 17:13:07.841065"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Magni voluptas aut amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:13:07.842677"], ["updated_at", "2020-05-05 17:13:07.842677"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Danial Homenick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7PoKrqF5OWfvHk6wdGTu2eLAeJ7F9ZkvYYw1Hy6MunLWIdYSs9RjS"], ["created_at", "2020-05-05 17:13:07.846973"], ["updated_at", "2020-05-05 17:13:07.846973"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.65ms)
+Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.3ms | Allocations: 2846)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3677)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (5.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (132.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (90.9ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (110.6ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (76.0ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (136.8ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (115.8ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.8ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (95.7ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (46.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ab"], ["description", "Culpa occaecati voluptas sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.295331"], ["updated_at", "2020-05-05 17:14:32.295331"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Atque eos dolorum blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.346397"], ["updated_at", "2020-05-05 17:14:32.346397"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Excepturi id eum illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.353372"], ["updated_at", "2020-05-05 17:14:32.353372"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Ipsam sed aut voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.382482"], ["updated_at", "2020-05-05 17:14:32.382482"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Sit facilis labore sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.388040"], ["updated_at", "2020-05-05 17:14:32.388040"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Doloribus maiores ut ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.392441"], ["updated_at", "2020-05-05 17:14:32.392441"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Omnis fuga beatae quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.393926"], ["updated_at", "2020-05-05 17:14:32.393926"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Vel nemo repellendus dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.395311"], ["updated_at", "2020-05-05 17:14:32.395311"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Quis tenetur ipsum vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.396677"], ["updated_at", "2020-05-05 17:14:32.396677"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Sequi illo consectetur nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.398094"], ["updated_at", "2020-05-05 17:14:32.398094"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Miss Yaeko Rowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4dHsElriTUGV/4X8m5O2tuwLVssDyCQy6eQnX8x9cIJxEDWql/mb6"], ["created_at", "2020-05-05 17:14:32.414468"], ["updated_at", "2020-05-05 17:14:32.414468"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.25ms)
+Completed 200 OK in 12ms (Views: 9.3ms | ActiveRecord: 0.4ms | Allocations: 4084)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Sint commodi maxime et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.480264"], ["updated_at", "2020-05-05 17:14:32.480264"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Saepe quia repudiandae rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.483127"], ["updated_at", "2020-05-05 17:14:32.483127"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Sed eos consequatur qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.484843"], ["updated_at", "2020-05-05 17:14:32.484843"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Molestias quo totam esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.486975"], ["updated_at", "2020-05-05 17:14:32.486975"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Qui repudiandae similique autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.490232"], ["updated_at", "2020-05-05 17:14:32.490232"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Et blanditiis et voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.492412"], ["updated_at", "2020-05-05 17:14:32.492412"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Consequatur incidunt dolores sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.494080"], ["updated_at", "2020-05-05 17:14:32.494080"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Sunt error cupiditate dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.495939"], ["updated_at", "2020-05-05 17:14:32.495939"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ducimus ut expedita aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.497418"], ["updated_at", "2020-05-05 17:14:32.497418"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Sunt exercitationem placeat quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.499001"], ["updated_at", "2020-05-05 17:14:32.499001"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ms. Ned Powlowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$A/3WOJOckjSEj/UItp2xI.rG9XzCCefUhPn0NwshWU1NMNccvOo2y"], ["created_at", "2020-05-05 17:14:32.502117"], ["updated_at", "2020-05-05 17:14:32.502117"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.78ms)
+Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.2ms | Allocations: 2845)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Similique maxime ipsa totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.521495"], ["updated_at", "2020-05-05 17:14:32.521495"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Consectetur qui dolores et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.524703"], ["updated_at", "2020-05-05 17:14:32.524703"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Quis deserunt soluta et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.526377"], ["updated_at", "2020-05-05 17:14:32.526377"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Itaque quia non omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.528891"], ["updated_at", "2020-05-05 17:14:32.528891"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Qui ea occaecati et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.531237"], ["updated_at", "2020-05-05 17:14:32.531237"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Omnis corrupti unde autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.532880"], ["updated_at", "2020-05-05 17:14:32.532880"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Et similique dolorem corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.534245"], ["updated_at", "2020-05-05 17:14:32.534245"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Non laborum maxime architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.535530"], ["updated_at", "2020-05-05 17:14:32.535530"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iste"], ["description", "Rerum eum exercitationem adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.536812"], ["updated_at", "2020-05-05 17:14:32.536812"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "totam"], ["description", "Perferendis odio recusandae voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.538097"], ["updated_at", "2020-05-05 17:14:32.538097"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Jannie Reilly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nW80u0rF6aplk2ezvtuNWe2joiVLfP0Obnzc4QlmO7QNQL55VfbBe"], ["created_at", "2020-05-05 17:14:32.540807"], ["updated_at", "2020-05-05 17:14:32.540807"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.56ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.44ms)
+Completed 200 OK in 50ms (Views: 16.7ms | ActiveRecord: 0.7ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Eum id aliquid excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.611886"], ["updated_at", "2020-05-05 17:14:32.611886"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Maiores perferendis vel soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.616175"], ["updated_at", "2020-05-05 17:14:32.616175"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Id natus consequatur quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.617749"], ["updated_at", "2020-05-05 17:14:32.617749"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Deleniti consequatur quia quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.619008"], ["updated_at", "2020-05-05 17:14:32.619008"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "occaecati"], ["description", "Qui aliquam nam qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.620290"], ["updated_at", "2020-05-05 17:14:32.620290"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Maiores corporis distinctio nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.621555"], ["updated_at", "2020-05-05 17:14:32.621555"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Quis numquam quod provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.622825"], ["updated_at", "2020-05-05 17:14:32.622825"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Qui ab vero iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.624189"], ["updated_at", "2020-05-05 17:14:32.624189"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Iste ad molestiae ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.625692"], ["updated_at", "2020-05-05 17:14:32.625692"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "Quis doloribus dolores itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.627407"], ["updated_at", "2020-05-05 17:14:32.627407"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Dr. Neville Purdy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kNuvUkAF/r.RuYi4kx4SOuW2dMChMFQI4XhvgS54Zxtbf.YtQop4e"], ["created_at", "2020-05-05 17:14:32.630810"], ["updated_at", "2020-05-05 17:14:32.630810"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.47ms)
+Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.81ms)
+Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.2ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Nisi debitis vel hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.655365"], ["updated_at", "2020-05-05 17:14:32.655365"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Distinctio ab sequi dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.658176"], ["updated_at", "2020-05-05 17:14:32.658176"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Officia est a ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.659636"], ["updated_at", "2020-05-05 17:14:32.659636"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Ab quaerat quia eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.660929"], ["updated_at", "2020-05-05 17:14:32.660929"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Consequuntur similique impedit dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.662445"], ["updated_at", "2020-05-05 17:14:32.662445"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Quia velit et veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.664013"], ["updated_at", "2020-05-05 17:14:32.664013"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Cumque dolor aut quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.665424"], ["updated_at", "2020-05-05 17:14:32.665424"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Veritatis hic animi quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.666907"], ["updated_at", "2020-05-05 17:14:32.666907"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Culpa id amet cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.668717"], ["updated_at", "2020-05-05 17:14:32.668717"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Minus neque et debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.671173"], ["updated_at", "2020-05-05 17:14:32.671173"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Frankie Koepp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CD914HFKp21SLrjW1rznX.ZckvWxgd7kSc1j7rbtiFAFRvdPJ.1Py"], ["created_at", "2020-05-05 17:14:32.674209"], ["updated_at", "2020-05-05 17:14:32.674209"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.07ms)
+Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms | Allocations: 2840)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Atque quo omnis vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.694190"], ["updated_at", "2020-05-05 17:14:32.694190"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Tempore molestiae eius voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.696964"], ["updated_at", "2020-05-05 17:14:32.696964"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Laborum ut aut est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.698426"], ["updated_at", "2020-05-05 17:14:32.698426"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Ullam tempora enim cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.699782"], ["updated_at", "2020-05-05 17:14:32.699782"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Eos non enim nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.700986"], ["updated_at", "2020-05-05 17:14:32.700986"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Similique saepe numquam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.702274"], ["updated_at", "2020-05-05 17:14:32.702274"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "similique"], ["description", "Beatae a aut inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.703587"], ["updated_at", "2020-05-05 17:14:32.703587"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Repudiandae ea neque qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.704922"], ["updated_at", "2020-05-05 17:14:32.704922"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ut alias harum non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.706226"], ["updated_at", "2020-05-05 17:14:32.706226"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Ut qui recusandae et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.707827"], ["updated_at", "2020-05-05 17:14:32.707827"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ms. Donny Corkery"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fgMDUVOfcAdWo5WatN5aQedA.fXrQeBDfHacrwLoRudAfX1q7rWrW"], ["created_at", "2020-05-05 17:14:32.711327"], ["updated_at", "2020-05-05 17:14:32.711327"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.61ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2840)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Rem culpa odio eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.736044"], ["updated_at", "2020-05-05 17:14:32.736044"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Sunt aut architecto inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.739106"], ["updated_at", "2020-05-05 17:14:32.739106"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Reiciendis harum quod dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.740471"], ["updated_at", "2020-05-05 17:14:32.740471"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Ut voluptatem error incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.741713"], ["updated_at", "2020-05-05 17:14:32.741713"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Fugit dicta quae sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.743096"], ["updated_at", "2020-05-05 17:14:32.743096"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Itaque sint recusandae eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.744558"], ["updated_at", "2020-05-05 17:14:32.744558"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Molestiae ipsa deleniti voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.745848"], ["updated_at", "2020-05-05 17:14:32.745848"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Aperiam at asperiores quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.747181"], ["updated_at", "2020-05-05 17:14:32.747181"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Ipsum dolor unde rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.749098"], ["updated_at", "2020-05-05 17:14:32.749098"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Ipsa et eaque qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.751383"], ["updated_at", "2020-05-05 17:14:32.751383"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Arleen Bergnaum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jJKMKJOxp6/HtGZx.BWpAOjFXrVNNwvJ3.KcgzP2F5k16XzuvY1Xm"], ["created_at", "2020-05-05 17:14:32.754516"], ["updated_at", "2020-05-05 17:14:32.754516"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.09ms)
+Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.4ms | Allocations: 2842)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 19ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 5749)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (35.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Harum nam voluptas facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.910257"], ["updated_at", "2020-05-05 17:14:32.910257"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Iure aut amet odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.913844"], ["updated_at", "2020-05-05 17:14:32.913844"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Rem nobis temporibus est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.916072"], ["updated_at", "2020-05-05 17:14:32.916072"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Hic ipsam commodi sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.917621"], ["updated_at", "2020-05-05 17:14:32.917621"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Quas commodi dolore porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.919066"], ["updated_at", "2020-05-05 17:14:32.919066"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Nihil dolores et nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.920605"], ["updated_at", "2020-05-05 17:14:32.920605"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Harum dicta omnis placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.922056"], ["updated_at", "2020-05-05 17:14:32.922056"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quaerat"], ["description", "Aut facilis repellendus rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.923371"], ["updated_at", "2020-05-05 17:14:32.923371"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Aut repellendus dolor iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.924701"], ["updated_at", "2020-05-05 17:14:32.924701"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Et eius soluta accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.926540"], ["updated_at", "2020-05-05 17:14:32.926540"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Conrad Lehner MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Bpr0azZN3zcbaTStYDt7ru1T8iv/apXCUZzy3H54.bMdIXOvsPeZG"], ["created_at", "2020-05-05 17:14:32.929431"], ["updated_at", "2020-05-05 17:14:32.929431"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.05ms)
+Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.17ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 3300)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Corrupti unde et repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.957890"], ["updated_at", "2020-05-05 17:14:32.957890"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Inventore est fugiat esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.960806"], ["updated_at", "2020-05-05 17:14:32.960806"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "necessitatibus"], ["description", "Debitis rerum animi dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.962456"], ["updated_at", "2020-05-05 17:14:32.962456"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Deleniti eaque qui maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.963808"], ["updated_at", "2020-05-05 17:14:32.963808"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Dolorem aliquid in mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.965835"], ["updated_at", "2020-05-05 17:14:32.965835"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Aliquid est dolorum dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.967797"], ["updated_at", "2020-05-05 17:14:32.967797"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Ducimus reprehenderit dolorem qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.969719"], ["updated_at", "2020-05-05 17:14:32.969719"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Et odit asperiores est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.972072"], ["updated_at", "2020-05-05 17:14:32.972072"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Facilis libero minima exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.974716"], ["updated_at", "2020-05-05 17:14:32.974716"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Et dolorem et non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:32.977619"], ["updated_at", "2020-05-05 17:14:32.977619"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mariano Schaefer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OXr202Ha7cozBCQn6Ti.FuOIZWWiMxIwowtX1G0qu2WEEc5KRzoxu"], ["created_at", "2020-05-05 17:14:32.980791"], ["updated_at", "2020-05-05 17:14:32.980791"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.23ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3721)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Libero tempore autem ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:33.006038"], ["updated_at", "2020-05-05 17:14:33.006038"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Aut et dolores corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:33.010384"], ["updated_at", "2020-05-05 17:14:33.010384"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Aut laboriosam est error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:33.013009"], ["updated_at", "2020-05-05 17:14:33.013009"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Dolorum sed officiis dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:33.016290"], ["updated_at", "2020-05-05 17:14:33.016290"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quae"], ["description", "Et mollitia illo neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:33.019076"], ["updated_at", "2020-05-05 17:14:33.019076"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Voluptatum ex aut aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:33.020687"], ["updated_at", "2020-05-05 17:14:33.020687"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Inventore et corporis blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:33.022292"], ["updated_at", "2020-05-05 17:14:33.022292"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Placeat facere ratione quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:33.023788"], ["updated_at", "2020-05-05 17:14:33.023788"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Cupiditate aperiam libero laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:33.025531"], ["updated_at", "2020-05-05 17:14:33.025531"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "possimus"], ["description", "Et voluptatibus nam sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:14:33.027262"], ["updated_at", "2020-05-05 17:14:33.027262"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Fleta Littel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ngGUZlqZdVDEbS8gl.f08eBEy75R.Enh3R2YrS/w3O6YkqDk14nKK"], ["created_at", "2020-05-05 17:14:33.030313"], ["updated_at", "2020-05-05 17:14:33.030313"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:33 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.18ms)
+Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms | Allocations: 2845)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:14:33 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.11ms)
+Completed 422 Unprocessable Entity in 9ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 3677)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (201.6ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (133.2ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (94.6ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (97.4ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (82.6ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (81.0ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (82.7ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Quo est reprehenderit sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:53.962637"], ["updated_at", "2020-05-05 17:15:53.962637"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Sit nisi non incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:53.967862"], ["updated_at", "2020-05-05 17:15:53.967862"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Porro quae quia nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:53.970118"], ["updated_at", "2020-05-05 17:15:53.970118"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Alias in est ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:53.972871"], ["updated_at", "2020-05-05 17:15:53.972871"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Ut occaecati laborum qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:53.985979"], ["updated_at", "2020-05-05 17:15:53.985979"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Aut laborum dolorum perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:53.987525"], ["updated_at", "2020-05-05 17:15:53.987525"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Eius sed temporibus aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:53.988942"], ["updated_at", "2020-05-05 17:15:53.988942"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Nobis qui est eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:53.990340"], ["updated_at", "2020-05-05 17:15:53.990340"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Adipisci ex quas nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:53.991822"], ["updated_at", "2020-05-05 17:15:53.991822"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Illum esse ab sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:53.993211"], ["updated_at", "2020-05-05 17:15:53.993211"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Lucienne Braun"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XAa2ZSMKo61E9BrUlcfMduroBvxgv2VzKa5XL2mSzKJnvIFjJXQkC"], ["created_at", "2020-05-05 17:15:54.007330"], ["updated_at", "2020-05-05 17:15:54.007330"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.5ms)
+Completed 200 OK in 13ms (Views: 10.0ms | ActiveRecord: 0.5ms | Allocations: 4081)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Doloribus pariatur sequi impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.070818"], ["updated_at", "2020-05-05 17:15:54.070818"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Itaque atque omnis voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.074362"], ["updated_at", "2020-05-05 17:15:54.074362"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Rerum dolor fuga in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.076488"], ["updated_at", "2020-05-05 17:15:54.076488"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Nisi et aut dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.077727"], ["updated_at", "2020-05-05 17:15:54.077727"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Accusamus quia vel voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.079053"], ["updated_at", "2020-05-05 17:15:54.079053"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Ut blanditiis est possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.080325"], ["updated_at", "2020-05-05 17:15:54.080325"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Velit amet laboriosam et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.081596"], ["updated_at", "2020-05-05 17:15:54.081596"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Porro nihil qui repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.083147"], ["updated_at", "2020-05-05 17:15:54.083147"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Ab aut id laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.085229"], ["updated_at", "2020-05-05 17:15:54.085229"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Laboriosam est vitae fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.086676"], ["updated_at", "2020-05-05 17:15:54.086676"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Chung Legros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cOF6/lISdHt7awqBAAds3ePpJ2jC0Av8aJ88QYCn9B1PzF0cJBwuW"], ["created_at", "2020-05-05 17:15:54.089835"], ["updated_at", "2020-05-05 17:15:54.089835"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.2ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2843)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Aspernatur repudiandae quae explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.107318"], ["updated_at", "2020-05-05 17:15:54.107318"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Architecto id sed velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.111319"], ["updated_at", "2020-05-05 17:15:54.111319"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Esse eum eum culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.113250"], ["updated_at", "2020-05-05 17:15:54.113250"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Dolorum sint id ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.114811"], ["updated_at", "2020-05-05 17:15:54.114811"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Accusantium perferendis quod eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.116097"], ["updated_at", "2020-05-05 17:15:54.116097"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Aliquam saepe aut quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.117363"], ["updated_at", "2020-05-05 17:15:54.117363"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Et unde voluptates quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.119008"], ["updated_at", "2020-05-05 17:15:54.119008"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Dolores necessitatibus sequi quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.121291"], ["updated_at", "2020-05-05 17:15:54.121291"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Soluta quia et quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.122718"], ["updated_at", "2020-05-05 17:15:54.122718"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Fugit saepe et quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.124060"], ["updated_at", "2020-05-05 17:15:54.124060"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Isaiah Williamson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UAQhX/yzBeG3YJ8VDpxBVu5pgsBxhT8xjZzKVRWqdd/xZ.7saqVei"], ["created_at", "2020-05-05 17:15:54.126682"], ["updated_at", "2020-05-05 17:15:54.126682"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.07ms)
+Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (11.97ms)
+Completed 200 OK in 50ms (Views: 16.6ms | ActiveRecord: 0.7ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsam"], ["description", "Quaerat minus odit blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.197430"], ["updated_at", "2020-05-05 17:15:54.197430"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Earum est sit at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.200892"], ["updated_at", "2020-05-05 17:15:54.200892"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "at"], ["description", "Vero assumenda possimus temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.203007"], ["updated_at", "2020-05-05 17:15:54.203007"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "amet"], ["description", "Earum vel ut nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.204376"], ["updated_at", "2020-05-05 17:15:54.204376"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Harum quisquam corporis aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.205656"], ["updated_at", "2020-05-05 17:15:54.205656"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Facere repellat aut fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.207054"], ["updated_at", "2020-05-05 17:15:54.207054"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Eaque quas aspernatur veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.208362"], ["updated_at", "2020-05-05 17:15:54.208362"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Similique enim sed itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.209639"], ["updated_at", "2020-05-05 17:15:54.209639"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Assumenda aperiam necessitatibus atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.211048"], ["updated_at", "2020-05-05 17:15:54.211048"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Aspernatur sed nesciunt harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.213110"], ["updated_at", "2020-05-05 17:15:54.213110"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Douglass Cronin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Rus3oGPyFPBtQhLbY8QfsOVMnfq4xsHicp07P67izqvIEO974kSJu"], ["created_at", "2020-05-05 17:15:54.217461"], ["updated_at", "2020-05-05 17:15:54.217461"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.32ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.73ms)
+Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.3ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Ipsam accusamus voluptas esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.239774"], ["updated_at", "2020-05-05 17:15:54.239774"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Illo perferendis repellendus porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.243046"], ["updated_at", "2020-05-05 17:15:54.243046"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Odio consequuntur eveniet voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.245370"], ["updated_at", "2020-05-05 17:15:54.245370"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Quis et aliquid earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.246718"], ["updated_at", "2020-05-05 17:15:54.246718"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Quis fugit sequi nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.248032"], ["updated_at", "2020-05-05 17:15:54.248032"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Et qui minima mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.249428"], ["updated_at", "2020-05-05 17:15:54.249428"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Eveniet vel cumque aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.250796"], ["updated_at", "2020-05-05 17:15:54.250796"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ea ullam molestiae assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.252417"], ["updated_at", "2020-05-05 17:15:54.252417"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Enim tempore est non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.254625"], ["updated_at", "2020-05-05 17:15:54.254625"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "beatae"], ["description", "Eaque labore nostrum enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.257388"], ["updated_at", "2020-05-05 17:15:54.257388"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Glenn Cassin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0nsr2NL2BJ/L4U2nis4rX.fg6qt3QJTZOpavS6D5iTNHFKusr6S2K"], ["created_at", "2020-05-05 17:15:54.260114"], ["updated_at", "2020-05-05 17:15:54.260114"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.28ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2842)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "In aliquid velit minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.280098"], ["updated_at", "2020-05-05 17:15:54.280098"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Iusto quisquam totam quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.283996"], ["updated_at", "2020-05-05 17:15:54.283996"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "architecto"], ["description", "Enim ducimus quia asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.285551"], ["updated_at", "2020-05-05 17:15:54.285551"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Blanditiis magni possimus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.286866"], ["updated_at", "2020-05-05 17:15:54.286866"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Neque voluptas eos esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.288168"], ["updated_at", "2020-05-05 17:15:54.288168"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Quasi dolorum a consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.289543"], ["updated_at", "2020-05-05 17:15:54.289543"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Rem modi velit neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.290840"], ["updated_at", "2020-05-05 17:15:54.290840"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Quae commodi facere sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.292444"], ["updated_at", "2020-05-05 17:15:54.292444"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Rerum aliquam vel omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.294345"], ["updated_at", "2020-05-05 17:15:54.294345"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Possimus consequatur et animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.296304"], ["updated_at", "2020-05-05 17:15:54.296304"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Leroy Robel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DgqfH2sAr/skPukCeGVR7ujcn5xyJg2QM66pN2bAldcDhl.9xue5O"], ["created_at", "2020-05-05 17:15:54.299370"], ["updated_at", "2020-05-05 17:15:54.299370"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.22ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2845)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Porro a est recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.321986"], ["updated_at", "2020-05-05 17:15:54.321986"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Et et incidunt similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.325684"], ["updated_at", "2020-05-05 17:15:54.325684"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Non tempore ipsam officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.327313"], ["updated_at", "2020-05-05 17:15:54.327313"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Fuga odio consequuntur maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.328652"], ["updated_at", "2020-05-05 17:15:54.328652"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Maxime qui dolore doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.330041"], ["updated_at", "2020-05-05 17:15:54.330041"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Dolores et cupiditate at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.331340"], ["updated_at", "2020-05-05 17:15:54.331340"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Repellendus tempora possimus velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.332927"], ["updated_at", "2020-05-05 17:15:54.332927"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Perspiciatis animi mollitia maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.335078"], ["updated_at", "2020-05-05 17:15:54.335078"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Quidem veniam animi modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.336802"], ["updated_at", "2020-05-05 17:15:54.336802"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Labore et ad quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.338109"], ["updated_at", "2020-05-05 17:15:54.338109"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ms. Jackie Hane"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j0RF8Rkg1iiSxBONUmNQu.Y.BgBWd4Hq8uu9CGD5t.lYNiL83ah9q"], ["created_at", "2020-05-05 17:15:54.340914"], ["updated_at", "2020-05-05 17:15:54.340914"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.34ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 19ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 5749)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Ducimus accusamus inventore nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.429455"], ["updated_at", "2020-05-05 17:15:54.429455"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Laboriosam asperiores distinctio sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.432592"], ["updated_at", "2020-05-05 17:15:54.432592"], ["created_by", "1"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Accusantium eum et porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.435683"], ["updated_at", "2020-05-05 17:15:54.435683"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Autem quod voluptatem odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.438056"], ["updated_at", "2020-05-05 17:15:54.438056"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Sit harum porro animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.439673"], ["updated_at", "2020-05-05 17:15:54.439673"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Enim sit earum ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.441590"], ["updated_at", "2020-05-05 17:15:54.441590"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iste"], ["description", "Perspiciatis id quia omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.443259"], ["updated_at", "2020-05-05 17:15:54.443259"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Iusto autem animi velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.444666"], ["updated_at", "2020-05-05 17:15:54.444666"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsam"], ["description", "Quia dolores enim ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.446214"], ["updated_at", "2020-05-05 17:15:54.446214"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Repellat incidunt eos sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.447626"], ["updated_at", "2020-05-05 17:15:54.447626"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mr. Oliva Dooley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$a6UruH764Q/paxT0ZJrFfOBrMEuuV8Lfow2kt5G1QjuneKmu4aWJ2"], ["created_at", "2020-05-05 17:15:54.450319"], ["updated_at", "2020-05-05 17:15:54.450319"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.55ms)
+Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3300)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Perspiciatis quia qui facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.476885"], ["updated_at", "2020-05-05 17:15:54.476885"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Aut voluptatibus assumenda illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.480154"], ["updated_at", "2020-05-05 17:15:54.480154"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Sequi sed asperiores eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.481742"], ["updated_at", "2020-05-05 17:15:54.481742"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Velit vel architecto reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.483146"], ["updated_at", "2020-05-05 17:15:54.483146"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Aut provident omnis aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.484875"], ["updated_at", "2020-05-05 17:15:54.484875"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Qui alias beatae dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.486318"], ["updated_at", "2020-05-05 17:15:54.486318"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Alias ad cupiditate qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.487576"], ["updated_at", "2020-05-05 17:15:54.487576"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Voluptatem nisi dolores id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.488865"], ["updated_at", "2020-05-05 17:15:54.488865"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Eum iste adipisci eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.490107"], ["updated_at", "2020-05-05 17:15:54.490107"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "hic"], ["description", "Non exercitationem sapiente maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.491372"], ["updated_at", "2020-05-05 17:15:54.491372"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Alethia Pouros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4fuiDPPcvcjTzMFAfyFb1O8XDmKqB2ejhqKORJ61BXWQeTNhSY2N2"], ["created_at", "2020-05-05 17:15:54.494267"], ["updated_at", "2020-05-05 17:15:54.494267"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.62ms)
+Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2846)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3721)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Eveniet nobis et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.519345"], ["updated_at", "2020-05-05 17:15:54.519345"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Ex eum ducimus cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.522515"], ["updated_at", "2020-05-05 17:15:54.522515"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Omnis porro impedit pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.524866"], ["updated_at", "2020-05-05 17:15:54.524866"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "Sit temporibus enim impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.527066"], ["updated_at", "2020-05-05 17:15:54.527066"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Sunt est dolores dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.528772"], ["updated_at", "2020-05-05 17:15:54.528772"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Occaecati deserunt ut totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.530509"], ["updated_at", "2020-05-05 17:15:54.530509"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Aliquam cum veniam nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.532430"], ["updated_at", "2020-05-05 17:15:54.532430"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Qui nostrum quisquam neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.534570"], ["updated_at", "2020-05-05 17:15:54.534570"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magni"], ["description", "Recusandae dolore nisi voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.536268"], ["updated_at", "2020-05-05 17:15:54.536268"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Numquam sunt ratione sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:15:54.538472"], ["updated_at", "2020-05-05 17:15:54.538472"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Robbie Dibbert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PRR2tif1Y1kINYo/UbsSje5zKi2nlnICs6S/jwitZ3mNnijEXiS/i"], ["created_at", "2020-05-05 17:15:54.542021"], ["updated_at", "2020-05-05 17:15:54.542021"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.57ms)
+Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.2ms | Allocations: 2845)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3677)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (161.6ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (111.7ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (95.0ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (80.4ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (89.8ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (88.5ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (89.0ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Aut non quia quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.804848"], ["updated_at", "2020-05-05 17:16:51.804848"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Dolor quibusdam et voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.808739"], ["updated_at", "2020-05-05 17:16:51.808739"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Velit esse in omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.810514"], ["updated_at", "2020-05-05 17:16:51.810514"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Veniam distinctio sunt quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.825529"], ["updated_at", "2020-05-05 17:16:51.825529"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Qui reprehenderit perspiciatis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.827365"], ["updated_at", "2020-05-05 17:16:51.827365"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Consequatur repellat et inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.828749"], ["updated_at", "2020-05-05 17:16:51.828749"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Esse modi delectus amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.830169"], ["updated_at", "2020-05-05 17:16:51.830169"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Voluptas earum veritatis magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.831567"], ["updated_at", "2020-05-05 17:16:51.831567"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Asperiores harum maxime saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.832933"], ["updated_at", "2020-05-05 17:16:51.832933"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Temporibus quam fugiat ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.834587"], ["updated_at", "2020-05-05 17:16:51.834587"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Conchita Monahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ls2jAHfvEFQXTY.me89mhOBmhpRm1g5j9b.FgXnkvWI9..s9lz3Lq"], ["created_at", "2020-05-05 17:16:51.849143"], ["updated_at", "2020-05-05 17:16:51.849143"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:51 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.52ms)
+Completed 200 OK in 12ms (Views: 9.5ms | ActiveRecord: 0.3ms | Allocations: 4085)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Minus sit nisi accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.914160"], ["updated_at", "2020-05-05 17:16:51.914160"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Dolor sunt autem rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.918882"], ["updated_at", "2020-05-05 17:16:51.918882"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Vero non ullam aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.920477"], ["updated_at", "2020-05-05 17:16:51.920477"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Fugit a ducimus voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.921973"], ["updated_at", "2020-05-05 17:16:51.921973"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "possimus"], ["description", "Et dolorem perspiciatis quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.923522"], ["updated_at", "2020-05-05 17:16:51.923522"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Pariatur non est quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.925269"], ["updated_at", "2020-05-05 17:16:51.925269"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Molestiae et numquam sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.927450"], ["updated_at", "2020-05-05 17:16:51.927450"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Commodi ut nisi eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.928943"], ["updated_at", "2020-05-05 17:16:51.928943"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Ea in perferendis fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.930249"], ["updated_at", "2020-05-05 17:16:51.930249"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Ut recusandae et voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.931599"], ["updated_at", "2020-05-05 17:16:51.931599"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Emory Streich Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rEuimXzK9CUwuL2l4jNlEe536DgaGYUOJs85pKINCnKqM5l2uDpCi"], ["created_at", "2020-05-05 17:16:51.934671"], ["updated_at", "2020-05-05 17:16:51.934671"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:51 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.55ms)
+Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms | Allocations: 2843)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Quia quisquam modi ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.953077"], ["updated_at", "2020-05-05 17:16:51.953077"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Rerum sit incidunt error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.958019"], ["updated_at", "2020-05-05 17:16:51.958019"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Mollitia qui eaque culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.959575"], ["updated_at", "2020-05-05 17:16:51.959575"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Eaque id et ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.960945"], ["updated_at", "2020-05-05 17:16:51.960945"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Mollitia nam expedita error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.962228"], ["updated_at", "2020-05-05 17:16:51.962228"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Optio quod et accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.963921"], ["updated_at", "2020-05-05 17:16:51.963921"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Dolores veritatis a quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.966256"], ["updated_at", "2020-05-05 17:16:51.966256"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Tenetur laboriosam ut dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.967690"], ["updated_at", "2020-05-05 17:16:51.967690"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Aut officia ea sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.968987"], ["updated_at", "2020-05-05 17:16:51.968987"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Voluptates porro sed quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:51.970231"], ["updated_at", "2020-05-05 17:16:51.970231"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Carmelo Kovacek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HM/osDXajV7CEBLuXYrejO8N1kv4FtlSndpQlDp8WH1.UtQ6.La2a"], ["created_at", "2020-05-05 17:16:51.972918"], ["updated_at", "2020-05-05 17:16:51.972918"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:51 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.17ms)
+Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2843)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:16:51 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.18ms)
+Completed 200 OK in 50ms (Views: 16.3ms | ActiveRecord: 0.7ms | Allocations: 7680)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Repudiandae ut distinctio qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.041254"], ["updated_at", "2020-05-05 17:16:52.041254"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Deserunt aut eos ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.045220"], ["updated_at", "2020-05-05 17:16:52.045220"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Accusamus distinctio dolorum sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.046836"], ["updated_at", "2020-05-05 17:16:52.046836"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Quo sapiente aut repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.048150"], ["updated_at", "2020-05-05 17:16:52.048150"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "Temporibus debitis quisquam mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.049489"], ["updated_at", "2020-05-05 17:16:52.049489"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Et et nam rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.050716"], ["updated_at", "2020-05-05 17:16:52.050716"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ut rerum et unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.052012"], ["updated_at", "2020-05-05 17:16:52.052012"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Illo deleniti est animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.053464"], ["updated_at", "2020-05-05 17:16:52.053464"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ea quod consequuntur aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.054880"], ["updated_at", "2020-05-05 17:16:52.054880"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Voluptatem inventore ratione quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.056515"], ["updated_at", "2020-05-05 17:16:52.056515"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Antionette Streich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oH9QbwXgjnwSNoI1t0P26eku2.NbFlHc5GhjfsQqJbrwqibQ3tV46"], ["created_at", "2020-05-05 17:16:52.059832"], ["updated_at", "2020-05-05 17:16:52.059832"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.25ms)
+Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.18ms)
+Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Velit consectetur adipisci vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.082107"], ["updated_at", "2020-05-05 17:16:52.082107"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Incidunt eos dicta rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.086803"], ["updated_at", "2020-05-05 17:16:52.086803"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Doloribus quia consectetur voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.088652"], ["updated_at", "2020-05-05 17:16:52.088652"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Minus consequatur et aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.089976"], ["updated_at", "2020-05-05 17:16:52.089976"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Voluptatem blanditiis porro molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.091262"], ["updated_at", "2020-05-05 17:16:52.091262"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Dolorum aut placeat inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.092574"], ["updated_at", "2020-05-05 17:16:52.092574"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Ut est assumenda ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.094012"], ["updated_at", "2020-05-05 17:16:52.094012"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Dignissimos ea occaecati vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.095607"], ["updated_at", "2020-05-05 17:16:52.095607"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Sed facilis eum eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.097869"], ["updated_at", "2020-05-05 17:16:52.097869"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Mollitia non repellat et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.100406"], ["updated_at", "2020-05-05 17:16:52.100406"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Collette Monahan II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6I/BXJNn4gYZFUNB7xbOpOmGyz3rBdD4BpILkCdMZw6lOMkKDDbYK"], ["created_at", "2020-05-05 17:16:52.103335"], ["updated_at", "2020-05-05 17:16:52.103335"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.3ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Rerum ut hic sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.124102"], ["updated_at", "2020-05-05 17:16:52.124102"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Ut culpa quis nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.128165"], ["updated_at", "2020-05-05 17:16:52.128165"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Et voluptatem quas repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.129678"], ["updated_at", "2020-05-05 17:16:52.129678"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Natus asperiores et non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.131045"], ["updated_at", "2020-05-05 17:16:52.131045"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Voluptatem voluptates ex libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.132435"], ["updated_at", "2020-05-05 17:16:52.132435"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Ut veniam quas cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.133780"], ["updated_at", "2020-05-05 17:16:52.133780"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Repellat quam iusto reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.135136"], ["updated_at", "2020-05-05 17:16:52.135136"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Earum ipsa et quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.136948"], ["updated_at", "2020-05-05 17:16:52.136948"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Voluptatibus facere dolor itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.139267"], ["updated_at", "2020-05-05 17:16:52.139267"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Aperiam illum nemo laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.140832"], ["updated_at", "2020-05-05 17:16:52.140832"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Micah Lowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pzn5IYMetx.JQyTP1EwqSuAGY0LDToNPrLQAeTkWkkyZJdzkZgNDi"], ["created_at", "2020-05-05 17:16:52.143631"], ["updated_at", "2020-05-05 17:16:52.143631"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.48ms)
+Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2842)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "earum"], ["description", "Est nihil ipsam esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.167571"], ["updated_at", "2020-05-05 17:16:52.167571"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Debitis vel temporibus amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.170697"], ["updated_at", "2020-05-05 17:16:52.170697"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Aut quis eum reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.173156"], ["updated_at", "2020-05-05 17:16:52.173156"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Est eveniet ea ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.175397"], ["updated_at", "2020-05-05 17:16:52.175397"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempora"], ["description", "Ipsa ut eaque ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.177626"], ["updated_at", "2020-05-05 17:16:52.177626"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quae"], ["description", "Voluptatem reprehenderit laboriosam consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.180035"], ["updated_at", "2020-05-05 17:16:52.180035"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Repellendus est quidem mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.181546"], ["updated_at", "2020-05-05 17:16:52.181546"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laboriosam"], ["description", "Totam dolor esse voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.182938"], ["updated_at", "2020-05-05 17:16:52.182938"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Reprehenderit esse libero quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.184295"], ["updated_at", "2020-05-05 17:16:52.184295"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Distinctio fugit mollitia sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.185552"], ["updated_at", "2020-05-05 17:16:52.185552"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Glynda Jones"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rH1.63VXyBoP5GaE59MYDuNGaRd8iMSuQEyRkYw7J5dE/Qei/4ura"], ["created_at", "2020-05-05 17:16:52.188208"], ["updated_at", "2020-05-05 17:16:52.188208"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.38ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms)
+Completed 422 Unprocessable Entity in 19ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 5749)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (43.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Quisquam velit et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.312990"], ["updated_at", "2020-05-05 17:16:52.312990"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Similique facilis enim aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.316839"], ["updated_at", "2020-05-05 17:16:52.316839"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Officiis sit debitis dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.320043"], ["updated_at", "2020-05-05 17:16:52.320043"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ipsam consequatur voluptas dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.321928"], ["updated_at", "2020-05-05 17:16:52.321928"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Illo officia qui dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.323409"], ["updated_at", "2020-05-05 17:16:52.323409"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Quisquam debitis soluta quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.324814"], ["updated_at", "2020-05-05 17:16:52.324814"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Ex totam ut est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.326308"], ["updated_at", "2020-05-05 17:16:52.326308"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Eum iste non nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.327726"], ["updated_at", "2020-05-05 17:16:52.327726"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illum"], ["description", "Ad aspernatur est a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.329098"], ["updated_at", "2020-05-05 17:16:52.329098"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iure"], ["description", "Sequi ducimus sit aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.330654"], ["updated_at", "2020-05-05 17:16:52.330654"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Rhona Satterfield II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bM00cyvDS2WoGGsF4u7fBuvRaL0ek6SvYJ7eeAV1do.LoEm7UxD5y"], ["created_at", "2020-05-05 17:16:52.333494"], ["updated_at", "2020-05-05 17:16:52.333494"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.0ms)
+Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms | Allocations: 2841)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 422 Unprocessable Entity in 5ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 3300)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Accusamus in quia aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.359490"], ["updated_at", "2020-05-05 17:16:52.359490"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Sed odit magnam possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.363572"], ["updated_at", "2020-05-05 17:16:52.363572"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloribus"], ["description", "Debitis facilis ea corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.365232"], ["updated_at", "2020-05-05 17:16:52.365232"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Cum saepe aut blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.367864"], ["updated_at", "2020-05-05 17:16:52.367864"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Cupiditate odit eos non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.369647"], ["updated_at", "2020-05-05 17:16:52.369647"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Doloribus voluptatem accusantium nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.371210"], ["updated_at", "2020-05-05 17:16:52.371210"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Numquam magnam praesentium et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.372659"], ["updated_at", "2020-05-05 17:16:52.372659"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Dolor praesentium minima et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.374417"], ["updated_at", "2020-05-05 17:16:52.374417"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Cum sapiente temporibus ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.376090"], ["updated_at", "2020-05-05 17:16:52.376090"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Expedita nulla molestiae eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.378041"], ["updated_at", "2020-05-05 17:16:52.378041"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Pamelia Douglas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$a4aumIl14eh4QJbPMUKw7uecCV/IbXfqcgbFe/vUEGMao3iMGVHc2"], ["created_at", "2020-05-05 17:16:52.381619"], ["updated_at", "2020-05-05 17:16:52.381619"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.62ms)
+Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 2846)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.1ms)
+Completed 422 Unprocessable Entity in 7ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 3721)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Illo sed optio molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.445675"], ["updated_at", "2020-05-05 17:16:52.445675"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Sapiente minima provident veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.449718"], ["updated_at", "2020-05-05 17:16:52.449718"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Consectetur perferendis tempora sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.451486"], ["updated_at", "2020-05-05 17:16:52.451486"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Eos voluptatem numquam et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.453729"], ["updated_at", "2020-05-05 17:16:52.453729"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Et eaque est omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.455636"], ["updated_at", "2020-05-05 17:16:52.455636"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Iste accusantium et in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.457039"], ["updated_at", "2020-05-05 17:16:52.457039"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloribus"], ["description", "Et rerum mollitia cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.459158"], ["updated_at", "2020-05-05 17:16:52.459158"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "amet"], ["description", "Repellendus consequuntur consequatur sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.461000"], ["updated_at", "2020-05-05 17:16:52.461000"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Facilis natus corrupti illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.462793"], ["updated_at", "2020-05-05 17:16:52.462793"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Sunt velit eum hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:16:52.465208"], ["updated_at", "2020-05-05 17:16:52.465208"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Homer Russel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9Gfa5OSN2qgTesK2WkTYveIeKMiWAxK2AwuINDGHk6iiXmuQx4Vp2"], ["created_at", "2020-05-05 17:16:52.467895"], ["updated_at", "2020-05-05 17:16:52.467895"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.26ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2842)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3677)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (68.4ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (101.4ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (119.2ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (82.5ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (145.6ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (139.7ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (82.1ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Incidunt dolorem sequi culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.628694"], ["updated_at", "2020-05-05 17:18:55.628694"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Consectetur reiciendis quibusdam dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.632360"], ["updated_at", "2020-05-05 17:18:55.632360"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Magnam ipsum laudantium asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.634017"], ["updated_at", "2020-05-05 17:18:55.634017"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Doloribus dolorem id voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.635394"], ["updated_at", "2020-05-05 17:18:55.635394"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Voluptatem nemo esse fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.636754"], ["updated_at", "2020-05-05 17:18:55.636754"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Illum animi ipsum earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.638089"], ["updated_at", "2020-05-05 17:18:55.638089"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Consequatur vel voluptatum in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.639484"], ["updated_at", "2020-05-05 17:18:55.639484"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Est eligendi aut quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.640814"], ["updated_at", "2020-05-05 17:18:55.640814"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iste"], ["description", "Atque ducimus a sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.642207"], ["updated_at", "2020-05-05 17:18:55.642207"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Quibusdam aliquid nostrum quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.643539"], ["updated_at", "2020-05-05 17:18:55.643539"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ramona Franecki"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GsVUHg1bVU9duaVw1IDM1.SH6EnqpxTauhej4a.aq/o1i//ET8A9y"], ["created_at", "2020-05-05 17:18:55.659383"], ["updated_at", "2020-05-05 17:18:55.659383"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:55 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (6.93ms)
+Completed 200 OK in 17ms (Views: 13.8ms | ActiveRecord: 0.4ms | Allocations: 4085)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (11.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Cum omnis ullam adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.742959"], ["updated_at", "2020-05-05 17:18:55.742959"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Et odit eius provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.748989"], ["updated_at", "2020-05-05 17:18:55.748989"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Quis sunt cupiditate repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.752508"], ["updated_at", "2020-05-05 17:18:55.752508"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odio"], ["description", "Occaecati ratione asperiores officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.755334"], ["updated_at", "2020-05-05 17:18:55.755334"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Iste vero omnis vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.758065"], ["updated_at", "2020-05-05 17:18:55.758065"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Et fugit unde nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.761453"], ["updated_at", "2020-05-05 17:18:55.761453"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Assumenda voluptates facere aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.763753"], ["updated_at", "2020-05-05 17:18:55.763753"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Est eos alias occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.765414"], ["updated_at", "2020-05-05 17:18:55.765414"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Qui laboriosam aperiam exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.767093"], ["updated_at", "2020-05-05 17:18:55.767093"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Eum ea eos eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.768753"], ["updated_at", "2020-05-05 17:18:55.768753"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Andrea O'Connell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$g5TR2Wk6smeyFj55WuR.2e3QMI1tq/l17/.EY.EQlSKGWh0ZqjRN."], ["created_at", "2020-05-05 17:18:55.774233"], ["updated_at", "2020-05-05 17:18:55.774233"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:55 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.61ms)
+Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms | Allocations: 2842)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (41.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Alias ea quia eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.833764"], ["updated_at", "2020-05-05 17:18:55.833764"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Ut consectetur neque sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.841636"], ["updated_at", "2020-05-05 17:18:55.841636"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Numquam eaque deleniti et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.845994"], ["updated_at", "2020-05-05 17:18:55.845994"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Et pariatur omnis illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.849868"], ["updated_at", "2020-05-05 17:18:55.849868"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Ex ad tenetur fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.854404"], ["updated_at", "2020-05-05 17:18:55.854404"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Odit recusandae ad assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.857757"], ["updated_at", "2020-05-05 17:18:55.857757"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Rerum distinctio et exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.860015"], ["updated_at", "2020-05-05 17:18:55.860015"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Adipisci autem ad qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.862358"], ["updated_at", "2020-05-05 17:18:55.862358"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Et possimus sint ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.864542"], ["updated_at", "2020-05-05 17:18:55.864542"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "earum"], ["description", "Et unde consequatur nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.866706"], ["updated_at", "2020-05-05 17:18:55.866706"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Dr. Karan Bailey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DbbFNlaXkJvAB1sD8QNCCuJDly4lTXyuG0nqjpgr5YUbgh/J/vyxG"], ["created_at", "2020-05-05 17:18:55.871095"], ["updated_at", "2020-05-05 17:18:55.871095"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:55 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.44ms)
+Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:18:55 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.18ms)
+Completed 200 OK in 59ms (Views: 16.4ms | ActiveRecord: 0.8ms | Allocations: 7680)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (27.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Numquam ut totam earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.976521"], ["updated_at", "2020-05-05 17:18:55.976521"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Laudantium aliquam amet reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.982429"], ["updated_at", "2020-05-05 17:18:55.982429"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Et labore reprehenderit amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.984864"], ["updated_at", "2020-05-05 17:18:55.984864"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "A quasi illum optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.986985"], ["updated_at", "2020-05-05 17:18:55.986985"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Repudiandae ut blanditiis vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.989073"], ["updated_at", "2020-05-05 17:18:55.989073"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "architecto"], ["description", "Sint at impedit odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.991212"], ["updated_at", "2020-05-05 17:18:55.991212"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Cum iusto quas facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.995460"], ["updated_at", "2020-05-05 17:18:55.995460"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "amet"], ["description", "Doloribus dolor et similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:55.998144"], ["updated_at", "2020-05-05 17:18:55.998144"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Sint quia nam eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.000330"], ["updated_at", "2020-05-05 17:18:56.000330"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "a"], ["description", "Laboriosam enim voluptatem soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.002596"], ["updated_at", "2020-05-05 17:18:56.002596"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Hank Bergnaum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PIJ0qQYqc7KunwnE1Y9HWO7hPu9fXLYQ4j5.iisgX/0pDQaUs7mpC"], ["created_at", "2020-05-05 17:18:56.006797"], ["updated_at", "2020-05-05 17:18:56.006797"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.43ms)
+Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.3ms | Allocations: 2841)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (2.69ms)
+Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.4ms | Allocations: 1239)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eius"], ["description", "Eius fugiat quia est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.038320"], ["updated_at", "2020-05-05 17:18:56.038320"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Ut culpa qui vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.041354"], ["updated_at", "2020-05-05 17:18:56.041354"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "provident"], ["description", "Accusamus consequatur alias qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.042915"], ["updated_at", "2020-05-05 17:18:56.042915"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ipsam facere fuga corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.044247"], ["updated_at", "2020-05-05 17:18:56.044247"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magni"], ["description", "Debitis enim aut inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.045587"], ["updated_at", "2020-05-05 17:18:56.045587"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Culpa accusamus soluta placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.046913"], ["updated_at", "2020-05-05 17:18:56.046913"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Voluptate cum debitis omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.048190"], ["updated_at", "2020-05-05 17:18:56.048190"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Necessitatibus nihil id sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.049446"], ["updated_at", "2020-05-05 17:18:56.049446"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Explicabo accusamus ab dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.050831"], ["updated_at", "2020-05-05 17:18:56.050831"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Omnis nesciunt tenetur nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.052813"], ["updated_at", "2020-05-05 17:18:56.052813"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Kathrine Turner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BMe0xcwjcPoyo6KupDgrRuXpbdzy9kY1ymRykdvayfPpK.vQ60wGW"], ["created_at", "2020-05-05 17:18:56.056312"], ["updated_at", "2020-05-05 17:18:56.056312"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.69ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "provident"], ["description", "Nihil eum et non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.076659"], ["updated_at", "2020-05-05 17:18:56.076659"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "similique"], ["description", "Omnis sequi recusandae saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.080202"], ["updated_at", "2020-05-05 17:18:56.080202"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Qui sit earum est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.082165"], ["updated_at", "2020-05-05 17:18:56.082165"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Autem est non eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.083470"], ["updated_at", "2020-05-05 17:18:56.083470"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Eaque ea temporibus est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.084809"], ["updated_at", "2020-05-05 17:18:56.084809"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Mollitia soluta voluptas est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.086084"], ["updated_at", "2020-05-05 17:18:56.086084"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Est enim placeat fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.087494"], ["updated_at", "2020-05-05 17:18:56.087494"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Porro quia aliquid voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.088816"], ["updated_at", "2020-05-05 17:18:56.088816"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "provident"], ["description", "Sequi in perferendis enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.090105"], ["updated_at", "2020-05-05 17:18:56.090105"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Aut beatae quas eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.091436"], ["updated_at", "2020-05-05 17:18:56.091436"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Garth Kris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5mEkcx9wRto2Rp69apHcoOFZIX.P5s46is0XtjXEWTU/CYF/arnC6"], ["created_at", "2020-05-05 17:18:56.095047"], ["updated_at", "2020-05-05 17:18:56.095047"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.53ms)
+Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2841)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Deserunt exercitationem voluptas voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.119865"], ["updated_at", "2020-05-05 17:18:56.119865"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Eveniet saepe quo perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.123708"], ["updated_at", "2020-05-05 17:18:56.123708"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Quas eum quasi occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.125369"], ["updated_at", "2020-05-05 17:18:56.125369"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Architecto dolorem accusamus at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.126753"], ["updated_at", "2020-05-05 17:18:56.126753"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Magnam culpa quis doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.128144"], ["updated_at", "2020-05-05 17:18:56.128144"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minus"], ["description", "Sit in consequatur unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.129480"], ["updated_at", "2020-05-05 17:18:56.129480"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Veritatis consectetur dolores accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.130763"], ["updated_at", "2020-05-05 17:18:56.130763"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Excepturi nihil distinctio voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.132257"], ["updated_at", "2020-05-05 17:18:56.132257"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Voluptatibus qui pariatur ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.134333"], ["updated_at", "2020-05-05 17:18:56.134333"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Ullam voluptatum alias quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.136731"], ["updated_at", "2020-05-05 17:18:56.136731"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Royce Waelchi"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aUxU9h.VxIbPw4aRMQ7LeOgnfZz8tZVLEYqYVmBDfWlp1XNsYcRUW"], ["created_at", "2020-05-05 17:18:56.139450"], ["updated_at", "2020-05-05 17:18:56.139450"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.43ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2846)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "Frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :Frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 18ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 5749)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Consequuntur omnis numquam consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.230800"], ["updated_at", "2020-05-05 17:18:56.230800"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ipsa nihil dolor ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.235773"], ["updated_at", "2020-05-05 17:18:56.235773"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "adipisci"], ["description", "Natus labore voluptate blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.279042"], ["updated_at", "2020-05-05 17:18:56.279042"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Qui ipsum quaerat molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.281542"], ["updated_at", "2020-05-05 17:18:56.281542"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Architecto aliquid facere illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.284666"], ["updated_at", "2020-05-05 17:18:56.284666"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Tempore aut rerum error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.287294"], ["updated_at", "2020-05-05 17:18:56.287294"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Et porro voluptate quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.291271"], ["updated_at", "2020-05-05 17:18:56.291271"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Doloribus ut est et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.294841"], ["updated_at", "2020-05-05 17:18:56.294841"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Voluptate voluptatem omnis ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.296940"], ["updated_at", "2020-05-05 17:18:56.296940"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illum"], ["description", "Amet eum tenetur cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.299212"], ["updated_at", "2020-05-05 17:18:56.299212"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Bella Russel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$b39rTqncPn/mjhKj7lBfFeOZi3gpfPosthsNyAaDFVgUWQiP2r0vK"], ["created_at", "2020-05-05 17:18:56.302673"], ["updated_at", "2020-05-05 17:18:56.302673"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.48ms)
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "Frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :Frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 7ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3300)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Eligendi qui blanditiis fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.328010"], ["updated_at", "2020-05-05 17:18:56.328010"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Rem labore dicta esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.330759"], ["updated_at", "2020-05-05 17:18:56.330759"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Maiores quod natus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.332301"], ["updated_at", "2020-05-05 17:18:56.332301"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quae"], ["description", "In at fuga eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.335026"], ["updated_at", "2020-05-05 17:18:56.335026"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Delectus similique quam accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.336972"], ["updated_at", "2020-05-05 17:18:56.336972"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Ab repudiandae placeat natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.338324"], ["updated_at", "2020-05-05 17:18:56.338324"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Et dicta voluptas unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.339616"], ["updated_at", "2020-05-05 17:18:56.339616"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "provident"], ["description", "Odit est vel cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.340889"], ["updated_at", "2020-05-05 17:18:56.340889"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Reiciendis velit nostrum qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.342228"], ["updated_at", "2020-05-05 17:18:56.342228"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Quae sequi adipisci eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.343519"], ["updated_at", "2020-05-05 17:18:56.343519"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Pamela Collins"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vFozuhe7NVqkw0n9zuHaMeIOpt5YWnDTIk07OzQK2uVdkkiqYI5hi"], ["created_at", "2020-05-05 17:18:56.346101"], ["updated_at", "2020-05-05 17:18:56.346101"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.29ms)
+Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.1ms | Allocations: 2842)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3721)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Dolor dolores veritatis saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.372823"], ["updated_at", "2020-05-05 17:18:56.372823"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quaerat"], ["description", "Voluptatem nobis quo id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.378303"], ["updated_at", "2020-05-05 17:18:56.378303"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Fuga velit quo amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.381042"], ["updated_at", "2020-05-05 17:18:56.381042"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Fuga suscipit voluptas aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.383973"], ["updated_at", "2020-05-05 17:18:56.383973"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Nemo nam dolor et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.385480"], ["updated_at", "2020-05-05 17:18:56.385480"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Aut nam nemo et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.386769"], ["updated_at", "2020-05-05 17:18:56.386769"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Quia error rerum quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.388140"], ["updated_at", "2020-05-05 17:18:56.388140"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Consequatur nam incidunt veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.389416"], ["updated_at", "2020-05-05 17:18:56.389416"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Commodi nemo laboriosam itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.390713"], ["updated_at", "2020-05-05 17:18:56.390713"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Voluptatem enim dicta eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:18:56.392222"], ["updated_at", "2020-05-05 17:18:56.392222"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Edda Koch MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Jb3hEch8uNgmonfmUfxMOu3PEdAx2DqrNASPpcYu88KYpEP1ScOv6"], ["created_at", "2020-05-05 17:18:56.395213"], ["updated_at", "2020-05-05 17:18:56.395213"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.26ms)
+Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.2ms)
+Completed 422 Unprocessable Entity in 7ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 3677)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (124.4ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (112.8ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (127.0ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (122.1ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (104.7ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (131.7ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.9ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.8ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (78.6ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Consequatur minus omnis mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.511114"], ["updated_at", "2020-05-05 17:21:13.511114"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Et sunt debitis unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.515207"], ["updated_at", "2020-05-05 17:21:13.515207"], ["created_by", "1"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Ipsa recusandae sunt et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.517069"], ["updated_at", "2020-05-05 17:21:13.517069"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Et dolor nemo numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.518993"], ["updated_at", "2020-05-05 17:21:13.518993"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "In expedita harum quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.531708"], ["updated_at", "2020-05-05 17:21:13.531708"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Voluptatum id voluptatibus exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.534159"], ["updated_at", "2020-05-05 17:21:13.534159"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Placeat nihil necessitatibus deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.535665"], ["updated_at", "2020-05-05 17:21:13.535665"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Id qui odio modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.537092"], ["updated_at", "2020-05-05 17:21:13.537092"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Nulla error culpa asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.538517"], ["updated_at", "2020-05-05 17:21:13.538517"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Natus id hic voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.539857"], ["updated_at", "2020-05-05 17:21:13.539857"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ronny Medhurst PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ifmtV73YRfD0KTRijWeLqO6qFfhy32uoZWTi48vbP3L8Qzf63MCWq"], ["created_at", "2020-05-05 17:21:13.555252"], ["updated_at", "2020-05-05 17:21:13.555252"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.6ms)
+Completed 200 OK in 13ms (Views: 9.5ms | ActiveRecord: 0.4ms | Allocations: 4082)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Aut tenetur ut doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.620993"], ["updated_at", "2020-05-05 17:21:13.620993"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Veritatis qui dolore reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.624846"], ["updated_at", "2020-05-05 17:21:13.624846"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Iusto aut at nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.627393"], ["updated_at", "2020-05-05 17:21:13.627393"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "a"], ["description", "Dicta quo omnis vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.630271"], ["updated_at", "2020-05-05 17:21:13.630271"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Nisi voluptatibus voluptatem voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.633196"], ["updated_at", "2020-05-05 17:21:13.633196"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Enim ut maiores nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.634655"], ["updated_at", "2020-05-05 17:21:13.634655"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Aspernatur magni possimus est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.635971"], ["updated_at", "2020-05-05 17:21:13.635971"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Molestiae in atque et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.637230"], ["updated_at", "2020-05-05 17:21:13.637230"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Sed magni consequatur enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.638464"], ["updated_at", "2020-05-05 17:21:13.638464"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Voluptas ipsum quasi asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.639824"], ["updated_at", "2020-05-05 17:21:13.639824"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Reatha Spinka DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xhBmiy.1UvqGzzYlUzi4fu20PnHRHcaG9G9z9Z3Oixy9TICcaOVtq"], ["created_at", "2020-05-05 17:21:13.642790"], ["updated_at", "2020-05-05 17:21:13.642790"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.8ms)
+Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms | Allocations: 2842)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Esse et distinctio autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.661510"], ["updated_at", "2020-05-05 17:21:13.661510"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Sit aliquid ut non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.664878"], ["updated_at", "2020-05-05 17:21:13.664878"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Ut libero sapiente quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.667277"], ["updated_at", "2020-05-05 17:21:13.667277"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Non dolores ut placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.669065"], ["updated_at", "2020-05-05 17:21:13.669065"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "a"], ["description", "Incidunt sunt aut modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.671739"], ["updated_at", "2020-05-05 17:21:13.671739"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Nam dolore et dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.673576"], ["updated_at", "2020-05-05 17:21:13.673576"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Ut eveniet nihil non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.675398"], ["updated_at", "2020-05-05 17:21:13.675398"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Voluptatem et qui quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.677047"], ["updated_at", "2020-05-05 17:21:13.677047"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Et soluta voluptatem quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.678368"], ["updated_at", "2020-05-05 17:21:13.678368"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "impedit"], ["description", "Distinctio est laudantium quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.679728"], ["updated_at", "2020-05-05 17:21:13.679728"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Merrill Bruen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WaFkw4sRyQcqgZNtEZJCZ./.NsJ2MEfaRja5kp9lb9siBrhcUXe9S"], ["created_at", "2020-05-05 17:21:13.682381"], ["updated_at", "2020-05-05 17:21:13.682381"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.3ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2841)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:21:13 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.62ms)
+Completed 200 OK in 51ms (Views: 16.7ms | ActiveRecord: 0.7ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Et recusandae aut quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.753565"], ["updated_at", "2020-05-05 17:21:13.753565"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Dolorem exercitationem omnis impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.756897"], ["updated_at", "2020-05-05 17:21:13.756897"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Aut et minus delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.759481"], ["updated_at", "2020-05-05 17:21:13.759481"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Corporis eos vitae qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.760960"], ["updated_at", "2020-05-05 17:21:13.760960"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Consequatur alias porro fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.762336"], ["updated_at", "2020-05-05 17:21:13.762336"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Dicta ipsam corrupti rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.763605"], ["updated_at", "2020-05-05 17:21:13.763605"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Illum totam commodi explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.764896"], ["updated_at", "2020-05-05 17:21:13.764896"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Sunt iure occaecati ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.766235"], ["updated_at", "2020-05-05 17:21:13.766235"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Magni eos at eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.767569"], ["updated_at", "2020-05-05 17:21:13.767569"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Eum veniam aut consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.768898"], ["updated_at", "2020-05-05 17:21:13.768898"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Devon Sipes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$l4FIpcHAJ5ZrBa5B4Gsws.v4/BLUMtqV5xlyVi23O7l9ZeF07r89W"], ["created_at", "2020-05-05 17:21:13.772081"], ["updated_at", "2020-05-05 17:21:13.772081"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.5ms)
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:21:13 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.96ms)
+Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.4ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Sint sunt impedit eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.796941"], ["updated_at", "2020-05-05 17:21:13.796941"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Libero fuga incidunt eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.800982"], ["updated_at", "2020-05-05 17:21:13.800982"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Quod et et distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.802736"], ["updated_at", "2020-05-05 17:21:13.802736"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Quas laborum autem reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.804106"], ["updated_at", "2020-05-05 17:21:13.804106"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Nesciunt tempore rerum quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.805533"], ["updated_at", "2020-05-05 17:21:13.805533"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Ducimus quo dignissimos nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.806976"], ["updated_at", "2020-05-05 17:21:13.806976"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Esse occaecati neque odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.808364"], ["updated_at", "2020-05-05 17:21:13.808364"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quas"], ["description", "Laborum qui sit non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.809853"], ["updated_at", "2020-05-05 17:21:13.809853"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ipsa accusamus recusandae veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.811923"], ["updated_at", "2020-05-05 17:21:13.811923"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Ipsam ea maiores voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.814399"], ["updated_at", "2020-05-05 17:21:13.814399"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Vennie Gorczany Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$meB.iipM7Lb.ocIxD4SRA.7NANljqlMqZkZdf.ZFA8Y2FAb.IaXRm"], ["created_at", "2020-05-05 17:21:13.817405"], ["updated_at", "2020-05-05 17:21:13.817405"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.21ms)
+Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:21:13 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Aut omnis ex odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.838794"], ["updated_at", "2020-05-05 17:21:13.838794"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Ipsa dolores sunt non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.842550"], ["updated_at", "2020-05-05 17:21:13.842550"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Magni officia sit eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.844604"], ["updated_at", "2020-05-05 17:21:13.844604"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nisi"], ["description", "In optio corrupti vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.845957"], ["updated_at", "2020-05-05 17:21:13.845957"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Quod sint eos ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.847377"], ["updated_at", "2020-05-05 17:21:13.847377"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Dolore eos laborum natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.848712"], ["updated_at", "2020-05-05 17:21:13.848712"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Distinctio harum esse adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.850194"], ["updated_at", "2020-05-05 17:21:13.850194"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Molestiae nam consequatur consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.852000"], ["updated_at", "2020-05-05 17:21:13.852000"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Nihil nostrum distinctio minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.854185"], ["updated_at", "2020-05-05 17:21:13.854185"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Error et est nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.856423"], ["updated_at", "2020-05-05 17:21:13.856423"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Deonna Sporer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$y11gQdGhuDWejeuS8kqdfOHe5Qke2CRxyK2VkdO3ceX3OFUjzJR.a"], ["created_at", "2020-05-05 17:21:13.859100"], ["updated_at", "2020-05-05 17:21:13.859100"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.9ms)
+Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2840)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:21:13 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (10.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Qui maiores perferendis sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.888088"], ["updated_at", "2020-05-05 17:21:13.888088"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Dicta illum voluptatem modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.891738"], ["updated_at", "2020-05-05 17:21:13.891738"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Modi sed rerum aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.894497"], ["updated_at", "2020-05-05 17:21:13.894497"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Nobis ut in aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.896035"], ["updated_at", "2020-05-05 17:21:13.896035"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Aut dolores magnam quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.897303"], ["updated_at", "2020-05-05 17:21:13.897303"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Autem vitae sequi ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.898650"], ["updated_at", "2020-05-05 17:21:13.898650"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Maxime minima sed corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.900109"], ["updated_at", "2020-05-05 17:21:13.900109"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Dolores eum aut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.901476"], ["updated_at", "2020-05-05 17:21:13.901476"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Tempora illum cum maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.902769"], ["updated_at", "2020-05-05 17:21:13.902769"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Beatae enim omnis distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.904061"], ["updated_at", "2020-05-05 17:21:13.904061"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Cortney Cassin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$52ccbG04qmkCIYwn73GksO9XcCWIkuNWreGSRE8xmDlu7mu9l5ASe"], ["created_at", "2020-05-05 17:21:13.906982"], ["updated_at", "2020-05-05 17:21:13.906982"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.33ms)
+Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.4ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 19ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 5749)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Beatae repellat id eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.993866"], ["updated_at", "2020-05-05 17:21:13.993866"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Ut culpa assumenda corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.998051"], ["updated_at", "2020-05-05 17:21:13.998051"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Voluptatum tempore repudiandae non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:13.999605"], ["updated_at", "2020-05-05 17:21:13.999605"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Dolor voluptas id recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:14.000991"], ["updated_at", "2020-05-05 17:21:14.000991"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Praesentium adipisci excepturi cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:14.002451"], ["updated_at", "2020-05-05 17:21:14.002451"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Et distinctio exercitationem nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:14.003932"], ["updated_at", "2020-05-05 17:21:14.003932"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Et porro nam possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:14.005468"], ["updated_at", "2020-05-05 17:21:14.005468"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Et omnis reiciendis nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:14.006870"], ["updated_at", "2020-05-05 17:21:14.006870"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Hic reprehenderit repellendus rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:14.008283"], ["updated_at", "2020-05-05 17:21:14.008283"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Eveniet sapiente animi fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:14.009673"], ["updated_at", "2020-05-05 17:21:14.009673"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Rex Donnelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IzMTR7ZeTv..TENJLWV3veeiwJ.hDuIhb7C9TZ1M56NzjsTUI40UK"], ["created_at", "2020-05-05 17:21:14.013401"], ["updated_at", "2020-05-05 17:21:14.013401"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:14 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.29ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2845)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:21:14 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 5ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 3300)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (5.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (102.1ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (108.1ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (119.0ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (89.5ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (104.0ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (100.6ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (90.5ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Voluptatibus corporis odio sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.376725"], ["updated_at", "2020-05-05 17:21:56.376725"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Accusamus autem rerum est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.380607"], ["updated_at", "2020-05-05 17:21:56.380607"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Consectetur velit explicabo voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.382486"], ["updated_at", "2020-05-05 17:21:56.382486"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Ratione deleniti odit harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.385211"], ["updated_at", "2020-05-05 17:21:56.385211"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Quisquam velit nesciunt eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.398439"], ["updated_at", "2020-05-05 17:21:56.398439"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Sunt eos qui laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.399890"], ["updated_at", "2020-05-05 17:21:56.399890"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Quaerat eos non dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.401210"], ["updated_at", "2020-05-05 17:21:56.401210"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Nobis tempora qui repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.402556"], ["updated_at", "2020-05-05 17:21:56.402556"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Nisi mollitia nam consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.403974"], ["updated_at", "2020-05-05 17:21:56.403974"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Quae quia voluptatem incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.405288"], ["updated_at", "2020-05-05 17:21:56.405288"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Fe Wolff"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TasuQgENfimQwr.Vzn7.W.su7eouG.SyNbFb7DGmMN8favUk.YsSG"], ["created_at", "2020-05-05 17:21:56.420100"], ["updated_at", "2020-05-05 17:21:56.420100"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.26ms)
+Completed 200 OK in 12ms (Views: 9.5ms | ActiveRecord: 0.4ms | Allocations: 4087)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Et facere occaecati vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.484318"], ["updated_at", "2020-05-05 17:21:56.484318"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Omnis fugiat ea sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.488472"], ["updated_at", "2020-05-05 17:21:56.488472"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Dolor iusto quaerat eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.489955"], ["updated_at", "2020-05-05 17:21:56.489955"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Assumenda voluptatibus consequatur ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.492034"], ["updated_at", "2020-05-05 17:21:56.492034"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Quia autem et officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.493626"], ["updated_at", "2020-05-05 17:21:56.493626"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Architecto nulla placeat reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.494926"], ["updated_at", "2020-05-05 17:21:56.494926"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Laborum aut vitae sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.496261"], ["updated_at", "2020-05-05 17:21:56.496261"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "A ipsa excepturi eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.497645"], ["updated_at", "2020-05-05 17:21:56.497645"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Ad nihil blanditiis adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.499063"], ["updated_at", "2020-05-05 17:21:56.499063"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Consectetur sit quis explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.500373"], ["updated_at", "2020-05-05 17:21:56.500373"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Hayley Bartell III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/SJGUl.zg1NNhp2N4IeAz.JyQvc4Q2Urz86QeVaRpA3K5WHCmnODa"], ["created_at", "2020-05-05 17:21:56.503260"], ["updated_at", "2020-05-05 17:21:56.503260"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.59ms)
+Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2843)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Ut et omnis soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.522654"], ["updated_at", "2020-05-05 17:21:56.522654"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Natus occaecati et sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.527216"], ["updated_at", "2020-05-05 17:21:56.527216"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Velit iusto modi quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.529125"], ["updated_at", "2020-05-05 17:21:56.529125"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Ex ut saepe repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.530578"], ["updated_at", "2020-05-05 17:21:56.530578"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Recusandae et sunt laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.531968"], ["updated_at", "2020-05-05 17:21:56.531968"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Quam impedit voluptatem non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.533718"], ["updated_at", "2020-05-05 17:21:56.533718"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "A voluptatem quas nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.535502"], ["updated_at", "2020-05-05 17:21:56.535502"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Quisquam doloribus qui natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.536827"], ["updated_at", "2020-05-05 17:21:56.536827"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Quidem officia minima eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.538248"], ["updated_at", "2020-05-05 17:21:56.538248"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Quibusdam dolorum minima non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.539569"], ["updated_at", "2020-05-05 17:21:56.539569"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Emanuel Mills"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZeihXq6fISzMVzdHvSlZj.cI6zWgWZcHZU2CnbrAYKfk49can3WAa"], ["created_at", "2020-05-05 17:21:56.542254"], ["updated_at", "2020-05-05 17:21:56.542254"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.07ms)
+Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.3ms | Allocations: 2845)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (11.95ms)
+Completed 200 OK in 51ms (Views: 16.2ms | ActiveRecord: 0.7ms | Allocations: 7680)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Labore voluptates blanditiis dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.612929"], ["updated_at", "2020-05-05 17:21:56.612929"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Amet neque animi nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.616365"], ["updated_at", "2020-05-05 17:21:56.616365"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Qui voluptatum et suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.618974"], ["updated_at", "2020-05-05 17:21:56.618974"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Exercitationem quia iste minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.620401"], ["updated_at", "2020-05-05 17:21:56.620401"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Optio quia unde quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.621807"], ["updated_at", "2020-05-05 17:21:56.621807"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Voluptatum velit et optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.623342"], ["updated_at", "2020-05-05 17:21:56.623342"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Molestiae velit dolores doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.624925"], ["updated_at", "2020-05-05 17:21:56.624925"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Qui aliquid fugit consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.627628"], ["updated_at", "2020-05-05 17:21:56.627628"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "hic"], ["description", "Aliquam aliquid sed voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.629502"], ["updated_at", "2020-05-05 17:21:56.629502"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Qui ut rerum enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.630871"], ["updated_at", "2020-05-05 17:21:56.630871"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Eusebia Ratke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aYwqeNRnkLEluHwXZ9O/v.tDDhItPoHXyy4bBJn.hRcwx8Zgwm0y."], ["created_at", "2020-05-05 17:21:56.633616"], ["updated_at", "2020-05-05 17:21:56.633616"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.53ms)
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.8ms)
+Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.2ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laboriosam"], ["description", "Et rerum veritatis ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.655632"], ["updated_at", "2020-05-05 17:21:56.655632"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Optio sit asperiores in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.660039"], ["updated_at", "2020-05-05 17:21:56.660039"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Possimus natus blanditiis quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.661741"], ["updated_at", "2020-05-05 17:21:56.661741"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Aut ab velit nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.663430"], ["updated_at", "2020-05-05 17:21:56.663430"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Exercitationem nihil magnam perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.665006"], ["updated_at", "2020-05-05 17:21:56.665006"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Saepe sequi est veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.667807"], ["updated_at", "2020-05-05 17:21:56.667807"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Doloremque assumenda praesentium libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.669491"], ["updated_at", "2020-05-05 17:21:56.669491"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Et nulla praesentium doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.670818"], ["updated_at", "2020-05-05 17:21:56.670818"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Eveniet optio repudiandae rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.672375"], ["updated_at", "2020-05-05 17:21:56.672375"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Incidunt sit consectetur ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.673638"], ["updated_at", "2020-05-05 17:21:56.673638"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Giuseppe Christiansen MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JNVUdPk0Wg2yNS54rWUzD.wBKs8irbed2af7g4uCygfszFcawsvy2"], ["created_at", "2020-05-05 17:21:56.676272"], ["updated_at", "2020-05-05 17:21:56.676272"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.48ms)
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2843)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Mollitia illo dolores voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.696287"], ["updated_at", "2020-05-05 17:21:56.696287"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Qui facilis harum officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.700383"], ["updated_at", "2020-05-05 17:21:56.700383"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Praesentium repellat quidem eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.702213"], ["updated_at", "2020-05-05 17:21:56.702213"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Dolorum est nemo aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.703550"], ["updated_at", "2020-05-05 17:21:56.703550"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Omnis voluptas modi quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.705222"], ["updated_at", "2020-05-05 17:21:56.705222"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Incidunt voluptatibus adipisci totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.707694"], ["updated_at", "2020-05-05 17:21:56.707694"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Doloribus possimus animi beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.709845"], ["updated_at", "2020-05-05 17:21:56.709845"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Maxime dolorem iure commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.711333"], ["updated_at", "2020-05-05 17:21:56.711333"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Nemo quibusdam id corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.712731"], ["updated_at", "2020-05-05 17:21:56.712731"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Velit inventore est molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.714011"], ["updated_at", "2020-05-05 17:21:56.714011"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Conrad Wuckert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.Uh2WBivbpHC6/KqJuBvE.lstrrHsea3wUKYuyYUMElYa65ZImFgu"], ["created_at", "2020-05-05 17:21:56.716639"], ["updated_at", "2020-05-05 17:21:56.716639"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.37ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2846)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "similique"], ["description", "Tempore veritatis neque omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.740043"], ["updated_at", "2020-05-05 17:21:56.740043"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Minima earum consectetur occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.743615"], ["updated_at", "2020-05-05 17:21:56.743615"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Voluptas id quaerat aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.745690"], ["updated_at", "2020-05-05 17:21:56.745690"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Est et et animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.748095"], ["updated_at", "2020-05-05 17:21:56.748095"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "possimus"], ["description", "Adipisci cupiditate quos commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.750152"], ["updated_at", "2020-05-05 17:21:56.750152"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Et voluptatem commodi animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.751761"], ["updated_at", "2020-05-05 17:21:56.751761"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Cum et tempore est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.753032"], ["updated_at", "2020-05-05 17:21:56.753032"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Molestiae tempora quasi temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.754323"], ["updated_at", "2020-05-05 17:21:56.754323"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ex repellat autem natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.755658"], ["updated_at", "2020-05-05 17:21:56.755658"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Expedita eum libero aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.757006"], ["updated_at", "2020-05-05 17:21:56.757006"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Kandis Will"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ckMkqlR97iOWWxUSHMqM6.TjeLAnFx0BkHwk19drG6V/.eFW6UoeS"], ["created_at", "2020-05-05 17:21:56.759622"], ["updated_at", "2020-05-05 17:21:56.759622"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.86ms)
+Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 19ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 5749)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (9.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Iste tempore et eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.857912"], ["updated_at", "2020-05-05 17:21:56.857912"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "In quo minus omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.863635"], ["updated_at", "2020-05-05 17:21:56.863635"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Magni ut recusandae eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.865660"], ["updated_at", "2020-05-05 17:21:56.865660"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloribus"], ["description", "Aut quis minima omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.868808"], ["updated_at", "2020-05-05 17:21:56.868808"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Consequatur est autem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.872498"], ["updated_at", "2020-05-05 17:21:56.872498"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Accusamus vel repudiandae fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.874141"], ["updated_at", "2020-05-05 17:21:56.874141"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Aut eaque molestiae est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.875658"], ["updated_at", "2020-05-05 17:21:56.875658"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Quisquam aperiam consequatur quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.877048"], ["updated_at", "2020-05-05 17:21:56.877048"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Commodi veniam cum sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.878408"], ["updated_at", "2020-05-05 17:21:56.878408"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Quasi et provident ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:21:56.879808"], ["updated_at", "2020-05-05 17:21:56.879808"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Wendell O'Reilly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QSy28nNwCBfneI06365qveIhpraULqqVK09XhwtG6.i5BpG7PoN9G"], ["created_at", "2020-05-05 17:21:56.883226"], ["updated_at", "2020-05-05 17:21:56.883226"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.8ms)
+Completed 200 OK in 10ms (Views: 7.3ms | ActiveRecord: 0.4ms | Allocations: 2841)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.15ms)
+Completed 422 Unprocessable Entity in 7ms (Views: 1.1ms | ActiveRecord: 0.1ms | Allocations: 3300)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (5.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (147.9ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (89.8ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (93.3ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (80.5ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (90.3ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (90.7ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (155.7ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (22.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Laborum exercitationem ut illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.739002"], ["updated_at", "2020-05-05 17:23:11.739002"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minus"], ["description", "Eos enim iste enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.764048"], ["updated_at", "2020-05-05 17:23:11.764048"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Corporis qui maiores ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.766107"], ["updated_at", "2020-05-05 17:23:11.766107"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Occaecati consequatur qui magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.768015"], ["updated_at", "2020-05-05 17:23:11.768015"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Omnis voluptatibus necessitatibus est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.781702"], ["updated_at", "2020-05-05 17:23:11.781702"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Distinctio quo est voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.783530"], ["updated_at", "2020-05-05 17:23:11.783530"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Aut illo facilis quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.784849"], ["updated_at", "2020-05-05 17:23:11.784849"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Labore consequatur similique non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.786120"], ["updated_at", "2020-05-05 17:23:11.786120"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Consequatur illo et libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.787349"], ["updated_at", "2020-05-05 17:23:11.787349"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vero"], ["description", "In aperiam dolore sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.788619"], ["updated_at", "2020-05-05 17:23:11.788619"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Aaron Fay"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OafaKxBhFXrY6iJE4ucMRu5a1Sg/7lUYbrxZDOZ92mghHRkDHHaZ2"], ["created_at", "2020-05-05 17:23:11.803479"], ["updated_at", "2020-05-05 17:23:11.803479"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:11 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.55ms)
+Completed 200 OK in 15ms (Views: 11.2ms | ActiveRecord: 0.4ms | Allocations: 4084)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Minima ducimus est dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.885444"], ["updated_at", "2020-05-05 17:23:11.885444"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Quasi ut et quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.889795"], ["updated_at", "2020-05-05 17:23:11.889795"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "A maiores dolores ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.891535"], ["updated_at", "2020-05-05 17:23:11.891535"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Excepturi nam velit similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.893105"], ["updated_at", "2020-05-05 17:23:11.893105"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Quisquam assumenda minima est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.894466"], ["updated_at", "2020-05-05 17:23:11.894466"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Provident illum labore magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.895705"], ["updated_at", "2020-05-05 17:23:11.895705"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Aperiam consequatur dolorum molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.896941"], ["updated_at", "2020-05-05 17:23:11.896941"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Nihil amet nulla debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.898344"], ["updated_at", "2020-05-05 17:23:11.898344"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Et nihil ex iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.900866"], ["updated_at", "2020-05-05 17:23:11.900866"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Qui aut molestiae voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.903035"], ["updated_at", "2020-05-05 17:23:11.903035"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Trevor Hagenes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BN919ras0N7a1p0lGW3C0.wuc9BZnYkecb98L1aZg4DoQa/DMkHne"], ["created_at", "2020-05-05 17:23:11.905697"], ["updated_at", "2020-05-05 17:23:11.905697"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:11 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.98ms)
+Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 2844)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quaerat"], ["description", "Quod corporis et aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.922755"], ["updated_at", "2020-05-05 17:23:11.922755"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Consequatur harum at pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.926056"], ["updated_at", "2020-05-05 17:23:11.926056"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Corporis aspernatur dicta impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.928187"], ["updated_at", "2020-05-05 17:23:11.928187"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Aliquam fugiat est dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.929525"], ["updated_at", "2020-05-05 17:23:11.929525"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Animi est aut distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.930884"], ["updated_at", "2020-05-05 17:23:11.930884"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Quos quia in nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.932784"], ["updated_at", "2020-05-05 17:23:11.932784"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Sit soluta nobis ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.934609"], ["updated_at", "2020-05-05 17:23:11.934609"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Expedita sint distinctio sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.936656"], ["updated_at", "2020-05-05 17:23:11.936656"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Sequi neque qui aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.937927"], ["updated_at", "2020-05-05 17:23:11.937927"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Culpa quos labore voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:11.939252"], ["updated_at", "2020-05-05 17:23:11.939252"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Joanne Jerde"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.AW1Y8Sf4HOBTIROFPfBfOwoFWTAW4m4EQw5mf0v4usED6tqovivO"], ["created_at", "2020-05-05 17:23:11.942334"], ["updated_at", "2020-05-05 17:23:11.942334"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:11 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.32ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:23:11 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.03ms)
+Completed 200 OK in 50ms (Views: 16.2ms | ActiveRecord: 0.8ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nemo"], ["description", "Architecto repudiandae accusamus beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.011520"], ["updated_at", "2020-05-05 17:23:12.011520"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Reiciendis voluptates facere saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.014771"], ["updated_at", "2020-05-05 17:23:12.014771"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quas"], ["description", "Rerum labore aut error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.016885"], ["updated_at", "2020-05-05 17:23:12.016885"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Sit dolorum exercitationem aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.018354"], ["updated_at", "2020-05-05 17:23:12.018354"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Sed fugit velit consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.019976"], ["updated_at", "2020-05-05 17:23:12.019976"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Omnis eligendi maiores et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.021431"], ["updated_at", "2020-05-05 17:23:12.021431"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Ipsum et nihil eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.022757"], ["updated_at", "2020-05-05 17:23:12.022757"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Similique eaque quo est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.024555"], ["updated_at", "2020-05-05 17:23:12.024555"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Odio rerum et deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.026139"], ["updated_at", "2020-05-05 17:23:12.026139"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Dolor eum delectus ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.027423"], ["updated_at", "2020-05-05 17:23:12.027423"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mrs. Kory Steuber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tACLg6jbYzDcb7moAEfnCOq9Kxi0aSrwA/jYlZzRzGzPMEkSFoWYC"], ["created_at", "2020-05-05 17:23:12.030238"], ["updated_at", "2020-05-05 17:23:12.030238"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:12 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.35ms)
+Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.3ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:23:12 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.27ms)
+Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.3ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Vel iusto soluta qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.053437"], ["updated_at", "2020-05-05 17:23:12.053437"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "necessitatibus"], ["description", "Sed cumque perferendis ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.058039"], ["updated_at", "2020-05-05 17:23:12.058039"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Perferendis eaque blanditiis recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.059547"], ["updated_at", "2020-05-05 17:23:12.059547"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Asperiores quia sequi voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.060937"], ["updated_at", "2020-05-05 17:23:12.060937"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Error molestiae suscipit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.062235"], ["updated_at", "2020-05-05 17:23:12.062235"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Dolores eum quis enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.063544"], ["updated_at", "2020-05-05 17:23:12.063544"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Facere neque ut omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.065034"], ["updated_at", "2020-05-05 17:23:12.065034"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Amet non optio facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.066565"], ["updated_at", "2020-05-05 17:23:12.066565"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Nemo enim tempore quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.068556"], ["updated_at", "2020-05-05 17:23:12.068556"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ab"], ["description", "Blanditiis velit delectus quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.069953"], ["updated_at", "2020-05-05 17:23:12.069953"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Maynard Kovacek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2JQydAN7/fIbKcqTRiH7tOZvIlzQrciTUvlz6qEvQ8gl7XpGlbptG"], ["created_at", "2020-05-05 17:23:12.072836"], ["updated_at", "2020-05-05 17:23:12.072836"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:12 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.47ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2841)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:23:12 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Odio voluptas qui eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.093866"], ["updated_at", "2020-05-05 17:23:12.093866"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Vitae tenetur ab qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.097185"], ["updated_at", "2020-05-05 17:23:12.097185"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Fuga ut vitae non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.099462"], ["updated_at", "2020-05-05 17:23:12.099462"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Iste sapiente officia maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.100861"], ["updated_at", "2020-05-05 17:23:12.100861"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Assumenda optio animi praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.102276"], ["updated_at", "2020-05-05 17:23:12.102276"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Earum illum ipsa corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.103612"], ["updated_at", "2020-05-05 17:23:12.103612"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minima"], ["description", "Dicta sed minus dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.104840"], ["updated_at", "2020-05-05 17:23:12.104840"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Qui sunt dolor id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.106132"], ["updated_at", "2020-05-05 17:23:12.106132"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Aut quam voluptas sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.107483"], ["updated_at", "2020-05-05 17:23:12.107483"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Aut enim laborum eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.109484"], ["updated_at", "2020-05-05 17:23:12.109484"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Brandon Krajcik I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QH2T7xpCX0AZuvbweBC7XOFejbMZRMa44AbPI9P0DC.b/MJ1gPaHK"], ["created_at", "2020-05-05 17:23:12.112562"], ["updated_at", "2020-05-05 17:23:12.112562"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:12 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.54ms)
+Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2841)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:23:12 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Laudantium ipsum dignissimos quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.137287"], ["updated_at", "2020-05-05 17:23:12.137287"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Occaecati ea delectus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.141231"], ["updated_at", "2020-05-05 17:23:12.141231"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Quod voluptas explicabo ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.142907"], ["updated_at", "2020-05-05 17:23:12.142907"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Et est quasi et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.144257"], ["updated_at", "2020-05-05 17:23:12.144257"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Dolores expedita omnis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.145558"], ["updated_at", "2020-05-05 17:23:12.145558"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Perferendis enim temporibus est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.146853"], ["updated_at", "2020-05-05 17:23:12.146853"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Natus labore aut alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.148408"], ["updated_at", "2020-05-05 17:23:12.148408"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Pariatur id illum mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.150347"], ["updated_at", "2020-05-05 17:23:12.150347"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Sit ullam incidunt et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.151749"], ["updated_at", "2020-05-05 17:23:12.151749"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Odio occaecati possimus omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.153127"], ["updated_at", "2020-05-05 17:23:12.153127"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Jerrold Ortiz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gXWd42LqXDTO/WVjCp23O.wW69piIKtohCO7eLuBcuLko70nynJta"], ["created_at", "2020-05-05 17:23:12.156712"], ["updated_at", "2020-05-05 17:23:12.156712"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:12 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.33ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:23:12 -0300
+Processing by MeetsController#create as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 20ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 6589)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Nisi quia dolorem explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.243222"], ["updated_at", "2020-05-05 17:23:12.243222"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Aut quasi tenetur doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.246936"], ["updated_at", "2020-05-05 17:23:12.246936"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Quasi neque est ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.248758"], ["updated_at", "2020-05-05 17:23:12.248758"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Est temporibus ea pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.250048"], ["updated_at", "2020-05-05 17:23:12.250048"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Quaerat iste dolores assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.251740"], ["updated_at", "2020-05-05 17:23:12.251740"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Sit a officiis cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.253274"], ["updated_at", "2020-05-05 17:23:12.253274"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minus"], ["description", "Quam atque sed sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.255332"], ["updated_at", "2020-05-05 17:23:12.255332"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "modi"], ["description", "Expedita pariatur quibusdam voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.257703"], ["updated_at", "2020-05-05 17:23:12.257703"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Fuga ea ut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.259620"], ["updated_at", "2020-05-05 17:23:12.259620"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Qui ut et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:23:12.261544"], ["updated_at", "2020-05-05 17:23:12.261544"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Talitha Parker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fGBzBxl/MZGg2F2Z.rz7beoSOEug.IMoi7PyuyJMbBFR1Xk6qTOo2"], ["created_at", "2020-05-05 17:23:12.264215"], ["updated_at", "2020-05-05 17:23:12.264215"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:12 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.68ms)
+Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2841)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:23:12 -0300
+Processing by MeetsController#create as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 4061)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (172.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (100.5ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (137.0ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (91.0ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (86.6ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (84.1ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (85.8ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.2ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Praesentium aperiam aliquid id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.731348"], ["updated_at", "2020-05-05 17:24:04.731348"], ["created_by", "1"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Voluptatem qui ut vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.738684"], ["updated_at", "2020-05-05 17:24:04.738684"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Et voluptatem repudiandae voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.740930"], ["updated_at", "2020-05-05 17:24:04.740930"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Magni consequuntur neque magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.743175"], ["updated_at", "2020-05-05 17:24:04.743175"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Earum enim fugiat tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.757110"], ["updated_at", "2020-05-05 17:24:04.757110"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Distinctio voluptatem repudiandae deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.758723"], ["updated_at", "2020-05-05 17:24:04.758723"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Qui explicabo nobis fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.760222"], ["updated_at", "2020-05-05 17:24:04.760222"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sequi"], ["description", "Excepturi et cupiditate molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.761718"], ["updated_at", "2020-05-05 17:24:04.761718"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Repellendus et odio officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.763171"], ["updated_at", "2020-05-05 17:24:04.763171"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Dolore quam maxime quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.764585"], ["updated_at", "2020-05-05 17:24:04.764585"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Dale Bayer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sXilXN5pff.dG5kLBWF4/OqfZIoVq00t3fPCRioj7ztmYT6MZaASC"], ["created_at", "2020-05-05 17:24:04.778975"], ["updated_at", "2020-05-05 17:24:04.778975"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (10.89ms)
+Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 0.3ms | Allocations: 4086)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Voluptate omnis inventore quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.867120"], ["updated_at", "2020-05-05 17:24:04.867120"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Blanditiis ea magni aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.872888"], ["updated_at", "2020-05-05 17:24:04.872888"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Voluptatibus omnis at inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.875009"], ["updated_at", "2020-05-05 17:24:04.875009"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Placeat qui consequatur sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.876985"], ["updated_at", "2020-05-05 17:24:04.876985"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Et veritatis consectetur eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.879415"], ["updated_at", "2020-05-05 17:24:04.879415"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Ea aut velit sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.881387"], ["updated_at", "2020-05-05 17:24:04.881387"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Fugiat voluptatem quam perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.883159"], ["updated_at", "2020-05-05 17:24:04.883159"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Eligendi nihil expedita cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.884969"], ["updated_at", "2020-05-05 17:24:04.884969"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Fuga dignissimos nobis aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.887067"], ["updated_at", "2020-05-05 17:24:04.887067"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Quibusdam ut incidunt delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.888986"], ["updated_at", "2020-05-05 17:24:04.888986"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Lorrie Hamill V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$p1X8wDoi6KhfbTiOVhZqWONQCpeYzqyZY6usgkYpetqtosnXlv/Hi"], ["created_at", "2020-05-05 17:24:04.892590"], ["updated_at", "2020-05-05 17:24:04.892590"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.4ms)
+Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms | Allocations: 2845)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Iure qui quas perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.913974"], ["updated_at", "2020-05-05 17:24:04.913974"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Sequi hic voluptate a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.916897"], ["updated_at", "2020-05-05 17:24:04.916897"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Cum dolores eveniet laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.918430"], ["updated_at", "2020-05-05 17:24:04.918430"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Ea vitae sed aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.919771"], ["updated_at", "2020-05-05 17:24:04.919771"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Eum eum ipsum quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.921094"], ["updated_at", "2020-05-05 17:24:04.921094"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "occaecati"], ["description", "Sit sunt eum corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.922430"], ["updated_at", "2020-05-05 17:24:04.922430"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Provident earum quia autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.923856"], ["updated_at", "2020-05-05 17:24:04.923856"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Sit maxime et non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.925292"], ["updated_at", "2020-05-05 17:24:04.925292"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Suscipit ea omnis vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.927067"], ["updated_at", "2020-05-05 17:24:04.927067"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Corrupti mollitia in et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:04.929384"], ["updated_at", "2020-05-05 17:24:04.929384"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Coleman McGlynn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$q9czaPBNMCCE5nA5JSuez.h4BJBTo/0iy./ZDilGP2ivYdAAwsRuK"], ["created_at", "2020-05-05 17:24:04.932896"], ["updated_at", "2020-05-05 17:24:04.932896"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.3ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2840)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:24:04 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.2ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.87ms)
+Completed 200 OK in 51ms (Views: 17.0ms | ActiveRecord: 0.7ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nisi"], ["description", "Omnis deleniti quibusdam quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.002601"], ["updated_at", "2020-05-05 17:24:05.002601"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Eaque aut veniam architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.006370"], ["updated_at", "2020-05-05 17:24:05.006370"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Explicabo et illo ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.008878"], ["updated_at", "2020-05-05 17:24:05.008878"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Animi consequatur aut error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.010569"], ["updated_at", "2020-05-05 17:24:05.010569"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odio"], ["description", "Maiores porro blanditiis in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.011928"], ["updated_at", "2020-05-05 17:24:05.011928"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Nihil voluptatem nihil occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.013681"], ["updated_at", "2020-05-05 17:24:05.013681"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Soluta sed iure aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.015855"], ["updated_at", "2020-05-05 17:24:05.015855"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Quibusdam at et numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.017523"], ["updated_at", "2020-05-05 17:24:05.017523"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Vel aut voluptatem qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.018878"], ["updated_at", "2020-05-05 17:24:05.018878"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Reprehenderit sed deserunt voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.020231"], ["updated_at", "2020-05-05 17:24:05.020231"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Son Feest"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LgIpjORJQIKObqzMQsFcwudesa1FI95wFsMIVhnoadBynJIM/xI7a"], ["created_at", "2020-05-05 17:24:05.022877"], ["updated_at", "2020-05-05 17:24:05.022877"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.77ms)
+Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms | Allocations: 2845)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:24:05 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.78ms)
+Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.3ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Voluptatem accusantium dolore reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.045729"], ["updated_at", "2020-05-05 17:24:05.045729"], ["created_by", "1"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Quas vel non omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.050657"], ["updated_at", "2020-05-05 17:24:05.050657"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Est quam iste commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.052280"], ["updated_at", "2020-05-05 17:24:05.052280"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Rem molestias neque voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.054045"], ["updated_at", "2020-05-05 17:24:05.054045"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Unde illo provident voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.055433"], ["updated_at", "2020-05-05 17:24:05.055433"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Mollitia quia ducimus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.056748"], ["updated_at", "2020-05-05 17:24:05.056748"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Et soluta reprehenderit harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.058052"], ["updated_at", "2020-05-05 17:24:05.058052"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Ipsa rerum nihil omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.059376"], ["updated_at", "2020-05-05 17:24:05.059376"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "beatae"], ["description", "Est voluptatem eveniet et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.060714"], ["updated_at", "2020-05-05 17:24:05.060714"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Distinctio rerum corrupti maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.062035"], ["updated_at", "2020-05-05 17:24:05.062035"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ada Klocko III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$o8Oony6gMbyxmBbVk.seE.1Kv6uXsCQQndrvib5XlRVq87AmA8ZYm"], ["created_at", "2020-05-05 17:24:05.064731"], ["updated_at", "2020-05-05 17:24:05.064731"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.84ms)
+Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:24:05 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Iste veritatis placeat voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.085365"], ["updated_at", "2020-05-05 17:24:05.085365"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Minima vitae iste accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.089194"], ["updated_at", "2020-05-05 17:24:05.089194"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Sapiente error doloribus quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.091711"], ["updated_at", "2020-05-05 17:24:05.091711"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Praesentium dolorem et similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.093688"], ["updated_at", "2020-05-05 17:24:05.093688"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Corporis dolorem est ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.095041"], ["updated_at", "2020-05-05 17:24:05.095041"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Est quia laudantium totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.096313"], ["updated_at", "2020-05-05 17:24:05.096313"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Cupiditate voluptas unde sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.097623"], ["updated_at", "2020-05-05 17:24:05.097623"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Occaecati distinctio delectus architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.098897"], ["updated_at", "2020-05-05 17:24:05.098897"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Voluptates voluptatibus alias sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.100326"], ["updated_at", "2020-05-05 17:24:05.100326"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Dolor quo voluptas consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.101728"], ["updated_at", "2020-05-05 17:24:05.101728"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Winfred Dietrich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/q4E2n4pJgxxeNtTChVeNegEvdumPoWhzr5MjyezA1jD6PpCORMz6"], ["created_at", "2020-05-05 17:24:05.104338"], ["updated_at", "2020-05-05 17:24:05.104338"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.65ms)
+Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms | Allocations: 2846)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:24:05 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (32.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Harum quaerat veritatis veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.158030"], ["updated_at", "2020-05-05 17:24:05.158030"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Autem et veniam modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.165033"], ["updated_at", "2020-05-05 17:24:05.165033"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Quasi qui quia quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.169442"], ["updated_at", "2020-05-05 17:24:05.169442"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Non a eius praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.174164"], ["updated_at", "2020-05-05 17:24:05.174164"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Recusandae corrupti voluptatum excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.178879"], ["updated_at", "2020-05-05 17:24:05.178879"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Velit voluptas quasi vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.181966"], ["updated_at", "2020-05-05 17:24:05.181966"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Et error impedit cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.183913"], ["updated_at", "2020-05-05 17:24:05.183913"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Et accusantium sunt error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.185810"], ["updated_at", "2020-05-05 17:24:05.185810"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Consequatur sapiente ipsam sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.187746"], ["updated_at", "2020-05-05 17:24:05.187746"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Est omnis quibusdam autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.190289"], ["updated_at", "2020-05-05 17:24:05.190289"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Yoko Kilback"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1Fb8rTKPx2IXp7nElALLnuXHlqErQZXWqUO8FgDC1vZje03mO3xyW"], ["created_at", "2020-05-05 17:24:05.194331"], ["updated_at", "2020-05-05 17:24:05.194331"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (6.09ms)
+Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:24:05 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 18ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 5749)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Sunt et tenetur voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.285653"], ["updated_at", "2020-05-05 17:24:05.285653"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Laborum in adipisci enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.290425"], ["updated_at", "2020-05-05 17:24:05.290425"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Fugit voluptas tempora suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.293023"], ["updated_at", "2020-05-05 17:24:05.293023"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Libero accusantium ex in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.296430"], ["updated_at", "2020-05-05 17:24:05.296430"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Et et dignissimos at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.297904"], ["updated_at", "2020-05-05 17:24:05.297904"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Cupiditate omnis est repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.299557"], ["updated_at", "2020-05-05 17:24:05.299557"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Laborum pariatur eum est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.301229"], ["updated_at", "2020-05-05 17:24:05.301229"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minima"], ["description", "Sit ipsam architecto amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.302791"], ["updated_at", "2020-05-05 17:24:05.302791"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Voluptate rerum aliquid eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.304673"], ["updated_at", "2020-05-05 17:24:05.304673"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Dolorem velit adipisci non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:24:05.306492"], ["updated_at", "2020-05-05 17:24:05.306492"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Royce Kirlin PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$m0b2WScD1T18h1pPkiu23OhJfjS17SwUwbBvneRIfKcQTRtn/DPD2"], ["created_at", "2020-05-05 17:24:05.309576"], ["updated_at", "2020-05-05 17:24:05.309576"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.29ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2845)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:24:05 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameters: :max_members, :created_by, :duration, :day, :frequency[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3300)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (137.5ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (99.7ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (125.6ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (98.6ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (130.8ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (89.7ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (97.1ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Ducimus ea dolores harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.781766"], ["updated_at", "2020-05-05 17:25:44.781766"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Adipisci perspiciatis atque quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.785726"], ["updated_at", "2020-05-05 17:25:44.785726"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Sed a fugiat et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.787824"], ["updated_at", "2020-05-05 17:25:44.787824"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Sint ducimus vero eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.789589"], ["updated_at", "2020-05-05 17:25:44.789589"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Quis ad doloremque sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.804230"], ["updated_at", "2020-05-05 17:25:44.804230"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Et placeat facere adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.805831"], ["updated_at", "2020-05-05 17:25:44.805831"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Non exercitationem non et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.807303"], ["updated_at", "2020-05-05 17:25:44.807303"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquam"], ["description", "Dolores rerum soluta possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.808800"], ["updated_at", "2020-05-05 17:25:44.808800"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Voluptate iusto nesciunt aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.810322"], ["updated_at", "2020-05-05 17:25:44.810322"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempore"], ["description", "Doloremque nulla magnam autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.811848"], ["updated_at", "2020-05-05 17:25:44.811848"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Sol Bernier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MGx1X7m0Slg0iv.E7w6tGOlHje5dzs5HMS11acjK3RWTDrZZ.2pMi"], ["created_at", "2020-05-05 17:25:44.826319"], ["updated_at", "2020-05-05 17:25:44.826319"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:44 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.48ms)
+Completed 200 OK in 13ms (Views: 9.6ms | ActiveRecord: 0.4ms | Allocations: 4086)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Consectetur consequatur occaecati laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.896856"], ["updated_at", "2020-05-05 17:25:44.896856"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Voluptates molestiae et delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.900411"], ["updated_at", "2020-05-05 17:25:44.900411"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Ipsam cum molestiae assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.903202"], ["updated_at", "2020-05-05 17:25:44.903202"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Sequi ut velit tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.904661"], ["updated_at", "2020-05-05 17:25:44.904661"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Modi vel esse et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.906161"], ["updated_at", "2020-05-05 17:25:44.906161"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Aliquid officiis labore in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.907679"], ["updated_at", "2020-05-05 17:25:44.907679"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Eaque ipsa enim et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.909798"], ["updated_at", "2020-05-05 17:25:44.909798"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Accusantium culpa natus id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.911497"], ["updated_at", "2020-05-05 17:25:44.911497"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "In adipisci quas libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.912733"], ["updated_at", "2020-05-05 17:25:44.912733"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illum"], ["description", "Minima perferendis minus nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.913972"], ["updated_at", "2020-05-05 17:25:44.913972"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Marc Lind"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9HCzj5wITfVPsP4c/V4bd.ug6TBVvLKgExb3eHmavysq1.ITYWmja"], ["created_at", "2020-05-05 17:25:44.916616"], ["updated_at", "2020-05-05 17:25:44.916616"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:44 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.2ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2843)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Nostrum dicta et aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.933936"], ["updated_at", "2020-05-05 17:25:44.933936"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Optio laborum magnam sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.937568"], ["updated_at", "2020-05-05 17:25:44.937568"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Suscipit nobis et aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.939132"], ["updated_at", "2020-05-05 17:25:44.939132"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Reprehenderit odit ea in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.940983"], ["updated_at", "2020-05-05 17:25:44.940983"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Harum recusandae labore autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.943174"], ["updated_at", "2020-05-05 17:25:44.943174"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Non magnam aut dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.944710"], ["updated_at", "2020-05-05 17:25:44.944710"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Et earum ratione est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.946362"], ["updated_at", "2020-05-05 17:25:44.946362"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Et quia optio consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.948531"], ["updated_at", "2020-05-05 17:25:44.948531"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Atque dignissimos ipsam eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.949984"], ["updated_at", "2020-05-05 17:25:44.949984"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Et quasi asperiores quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:44.951354"], ["updated_at", "2020-05-05 17:25:44.951354"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Amado Sanford"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LbFcUj2gqg0eoYhq40z1g.o8iel07YBo2ZOUsivFX6IPtz6weI.fe"], ["created_at", "2020-05-05 17:25:44.953979"], ["updated_at", "2020-05-05 17:25:44.953979"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:44 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.28ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:25:44 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.81ms)
+Completed 200 OK in 52ms (Views: 17.0ms | ActiveRecord: 0.7ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Aut omnis blanditiis sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.024855"], ["updated_at", "2020-05-05 17:25:45.024855"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nisi"], ["description", "Hic aliquid at et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.028116"], ["updated_at", "2020-05-05 17:25:45.028116"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Iste sed voluptas aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.030446"], ["updated_at", "2020-05-05 17:25:45.030446"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Et neque quis rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.032102"], ["updated_at", "2020-05-05 17:25:45.032102"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Magni ad cupiditate repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.033454"], ["updated_at", "2020-05-05 17:25:45.033454"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Mollitia voluptatem minus quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.034814"], ["updated_at", "2020-05-05 17:25:45.034814"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Repudiandae aut quis officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.036111"], ["updated_at", "2020-05-05 17:25:45.036111"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Aspernatur animi qui enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.037487"], ["updated_at", "2020-05-05 17:25:45.037487"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Tenetur voluptas atque voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.038832"], ["updated_at", "2020-05-05 17:25:45.038832"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Qui modi ut iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.040224"], ["updated_at", "2020-05-05 17:25:45.040224"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ms. Micheal Lueilwitz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$M2m.RSxU2KmnE6vPwLB9DO3KltKdlNIUQ7osIVHBQw3sBLM7ivoMK"], ["created_at", "2020-05-05 17:25:45.043443"], ["updated_at", "2020-05-05 17:25:45.043443"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:45 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.7ms)
+Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:25:45 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.4ms)
+Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Vero minima nihil eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.065931"], ["updated_at", "2020-05-05 17:25:45.065931"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quaerat"], ["description", "Culpa cum est consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.069414"], ["updated_at", "2020-05-05 17:25:45.069414"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Aut hic nobis sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.071650"], ["updated_at", "2020-05-05 17:25:45.071650"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Velit est incidunt est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.072974"], ["updated_at", "2020-05-05 17:25:45.072974"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "Nihil et fugit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.074324"], ["updated_at", "2020-05-05 17:25:45.074324"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Vitae adipisci neque ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.075661"], ["updated_at", "2020-05-05 17:25:45.075661"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Voluptatum quos eum dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.076922"], ["updated_at", "2020-05-05 17:25:45.076922"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Porro totam ipsa alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.078190"], ["updated_at", "2020-05-05 17:25:45.078190"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Recusandae assumenda quae soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.079559"], ["updated_at", "2020-05-05 17:25:45.079559"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Est dolor saepe architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.080930"], ["updated_at", "2020-05-05 17:25:45.080930"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Erna Barton Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BU12RLP19e3DAZsr79joUOEkQoKadMOgdcbz8q1s1/j1hHyKO7kLO"], ["created_at", "2020-05-05 17:25:45.084531"], ["updated_at", "2020-05-05 17:25:45.084531"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:45 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.19ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:25:45 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Ea quia quasi esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.105216"], ["updated_at", "2020-05-05 17:25:45.105216"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "At sed eum veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.107971"], ["updated_at", "2020-05-05 17:25:45.107971"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Esse veritatis voluptas quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.109446"], ["updated_at", "2020-05-05 17:25:45.109446"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Deserunt sit dolore quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.110814"], ["updated_at", "2020-05-05 17:25:45.110814"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Laboriosam suscipit laborum dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.112270"], ["updated_at", "2020-05-05 17:25:45.112270"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Rem in error est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.113601"], ["updated_at", "2020-05-05 17:25:45.113601"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Mollitia ut molestiae et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.114882"], ["updated_at", "2020-05-05 17:25:45.114882"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Enim dolorum molestiae voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.116116"], ["updated_at", "2020-05-05 17:25:45.116116"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Maxime fugit molestiae labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.117391"], ["updated_at", "2020-05-05 17:25:45.117391"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Totam quos sint est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.118745"], ["updated_at", "2020-05-05 17:25:45.118745"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Cary Senger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Y6X5mt6662vxx4mvn6haJ.CuOXaCm8GQsxr2fclGTohPvUCpsEjE6"], ["created_at", "2020-05-05 17:25:45.121367"], ["updated_at", "2020-05-05 17:25:45.121367"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:45 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.24ms)
+Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:25:45 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Culpa perferendis quibusdam sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.147058"], ["updated_at", "2020-05-05 17:25:45.147058"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Nemo et quos maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.150416"], ["updated_at", "2020-05-05 17:25:45.150416"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Officiis omnis id omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.151956"], ["updated_at", "2020-05-05 17:25:45.151956"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Harum sed alias magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.153242"], ["updated_at", "2020-05-05 17:25:45.153242"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsum"], ["description", "Eveniet odio saepe tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.154498"], ["updated_at", "2020-05-05 17:25:45.154498"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsa"], ["description", "Atque excepturi veritatis tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.155771"], ["updated_at", "2020-05-05 17:25:45.155771"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Ut beatae itaque doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.157048"], ["updated_at", "2020-05-05 17:25:45.157048"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Ab molestiae et ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.158485"], ["updated_at", "2020-05-05 17:25:45.158485"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Est aliquam alias perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.160021"], ["updated_at", "2020-05-05 17:25:45.160021"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "At quo necessitatibus sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.161670"], ["updated_at", "2020-05-05 17:25:45.161670"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ms. Chris Jenkins"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LVkWj/KhZwtXoF0mKFqEIuFn5lGgf3V1GLoEKn1uymJzelpRyFykK"], ["created_at", "2020-05-05 17:25:45.164599"], ["updated_at", "2020-05-05 17:25:45.164599"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:45 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (2.96ms)
+Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:25:45 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.204449"], ["updated_at", "2020-05-05 17:25:45.204449"], ["created_by", "1"]]
+ [1m[35m (17.5ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[36mUserMeet Create (0.2ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.76ms)
+Completed 201 Created in 61ms (Views: 1.2ms | ActiveRecord: 18.6ms | Allocations: 6775)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Autem at repellat tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.263493"], ["updated_at", "2020-05-05 17:25:45.263493"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Rerum dolorem consequatur facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.266804"], ["updated_at", "2020-05-05 17:25:45.266804"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cum"], ["description", "Sapiente voluptas minima voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.268523"], ["updated_at", "2020-05-05 17:25:45.268523"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Consequatur sunt commodi nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.270140"], ["updated_at", "2020-05-05 17:25:45.270140"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Explicabo nobis ipsam voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.273096"], ["updated_at", "2020-05-05 17:25:45.273096"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Quidem cum suscipit tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.275699"], ["updated_at", "2020-05-05 17:25:45.275699"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Tenetur cumque aspernatur voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.277611"], ["updated_at", "2020-05-05 17:25:45.277611"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Quis eveniet tempore sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.278935"], ["updated_at", "2020-05-05 17:25:45.278935"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Nihil dolorum omnis quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.280268"], ["updated_at", "2020-05-05 17:25:45.280268"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Assumenda qui maxime mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.281619"], ["updated_at", "2020-05-05 17:25:45.281619"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Sherika Ullrich Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oU7eZSxDUKQQCLLTF7v6u.xh8E0KWwlHWD3iikLUn7GI3nczJoika"], ["created_at", "2020-05-05 17:25:45.284734"], ["updated_at", "2020-05-05 17:25:45.284734"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:45 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.02ms)
+Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms | Allocations: 2846)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:25:45 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:25:45.297091"], ["updated_at", "2020-05-05 17:25:45.297091"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[36mUserMeet Create (0.2ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.56ms)
+Completed 201 Created in 6ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 2251)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (108.2ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (115.2ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (113.2ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (97.1ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (97.6ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (105.9ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (89.4ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Maxime et cumque et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.446629"], ["updated_at", "2020-05-05 17:26:23.446629"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Alias beatae quia consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.454584"], ["updated_at", "2020-05-05 17:26:23.454584"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "necessitatibus"], ["description", "Est ullam cumque quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.456816"], ["updated_at", "2020-05-05 17:26:23.456816"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iure"], ["description", "Aut neque qui rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.470720"], ["updated_at", "2020-05-05 17:26:23.470720"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Ratione neque fuga ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.472933"], ["updated_at", "2020-05-05 17:26:23.472933"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Vero vel necessitatibus officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.474706"], ["updated_at", "2020-05-05 17:26:23.474706"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Voluptatum dolores omnis vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.476479"], ["updated_at", "2020-05-05 17:26:23.476479"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Expedita hic ipsa tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.478131"], ["updated_at", "2020-05-05 17:26:23.478131"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Molestiae officiis sunt omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.479726"], ["updated_at", "2020-05-05 17:26:23.479726"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Porro harum aut autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.481339"], ["updated_at", "2020-05-05 17:26:23.481339"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Stefan Herman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Zok2bI1L7bGJVQZ6ZKeR8ekSJBqWHQBG3UZNL7FlVP0ZvDg8LXB6."], ["created_at", "2020-05-05 17:26:23.496153"], ["updated_at", "2020-05-05 17:26:23.496153"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.32ms)
+Completed 200 OK in 12ms (Views: 9.3ms | ActiveRecord: 0.4ms | Allocations: 4082)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Id non odio esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.564004"], ["updated_at", "2020-05-05 17:26:23.564004"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Earum amet nihil qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.567832"], ["updated_at", "2020-05-05 17:26:23.567832"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsam"], ["description", "In deleniti assumenda inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.569758"], ["updated_at", "2020-05-05 17:26:23.569758"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Vero cumque facilis placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.571695"], ["updated_at", "2020-05-05 17:26:23.571695"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Est labore magni maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.573064"], ["updated_at", "2020-05-05 17:26:23.573064"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Qui culpa aut esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.574430"], ["updated_at", "2020-05-05 17:26:23.574430"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Culpa corrupti illo quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.575687"], ["updated_at", "2020-05-05 17:26:23.575687"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "numquam"], ["description", "Nostrum consequatur et hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.577090"], ["updated_at", "2020-05-05 17:26:23.577090"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Qui est animi quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.578410"], ["updated_at", "2020-05-05 17:26:23.578410"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iure"], ["description", "Et maxime voluptatem cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.579728"], ["updated_at", "2020-05-05 17:26:23.579728"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Thelma Goodwin DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NHcFPskmM9259emXWt6Txegma9PVf2gEYV25vqhcluDpLZnORrLym"], ["created_at", "2020-05-05 17:26:23.582352"], ["updated_at", "2020-05-05 17:26:23.582352"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.21ms)
+Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms | Allocations: 2842)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Officiis deleniti a magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.601570"], ["updated_at", "2020-05-05 17:26:23.601570"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Magni perspiciatis blanditiis rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.604446"], ["updated_at", "2020-05-05 17:26:23.604446"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Iusto molestias et quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.605850"], ["updated_at", "2020-05-05 17:26:23.605850"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Ea maxime ullam officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.607245"], ["updated_at", "2020-05-05 17:26:23.607245"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Facilis voluptatem perferendis omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.608559"], ["updated_at", "2020-05-05 17:26:23.608559"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quae"], ["description", "Quia porro ratione nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.610000"], ["updated_at", "2020-05-05 17:26:23.610000"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Ut nobis ex placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.611445"], ["updated_at", "2020-05-05 17:26:23.611445"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Tenetur qui ipsum excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.613141"], ["updated_at", "2020-05-05 17:26:23.613141"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Illum accusamus quo fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.615234"], ["updated_at", "2020-05-05 17:26:23.615234"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Eum modi qui quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.616548"], ["updated_at", "2020-05-05 17:26:23.616548"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Adelle Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bwC6gfmN4nwvXpft2mrvPejfN/HlX4GJlj9zmfAiH71nrR6/HTmgK"], ["created_at", "2020-05-05 17:26:23.619148"], ["updated_at", "2020-05-05 17:26:23.619148"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.66ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (13.33ms)
+Completed 200 OK in 52ms (Views: 17.2ms | ActiveRecord: 0.8ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.0ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Est tenetur rem ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.689915"], ["updated_at", "2020-05-05 17:26:23.689915"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sapiente"], ["description", "Dolorem impedit et quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.694878"], ["updated_at", "2020-05-05 17:26:23.694878"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Perspiciatis et repudiandae facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.698941"], ["updated_at", "2020-05-05 17:26:23.698941"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Et sit deserunt omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.702052"], ["updated_at", "2020-05-05 17:26:23.702052"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Non quae harum quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.704872"], ["updated_at", "2020-05-05 17:26:23.704872"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Aliquid et doloremque vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.707707"], ["updated_at", "2020-05-05 17:26:23.707707"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quae"], ["description", "Eum fugiat est ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.710217"], ["updated_at", "2020-05-05 17:26:23.710217"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Labore voluptatem totam cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.713785"], ["updated_at", "2020-05-05 17:26:23.713785"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Perspiciatis occaecati magnam non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.717918"], ["updated_at", "2020-05-05 17:26:23.717918"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Sed harum error nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.720649"], ["updated_at", "2020-05-05 17:26:23.720649"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Keith Corwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RGnCWDf8NhFdjpxUXfb3zuGYkK6qNhcrpixa8VLun5Ijkk1pEXwwq"], ["created_at", "2020-05-05 17:26:23.723668"], ["updated_at", "2020-05-05 17:26:23.723668"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.31ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2841)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.43ms)
+Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms | Allocations: 1239)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Soluta suscipit inventore sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.745320"], ["updated_at", "2020-05-05 17:26:23.745320"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Sit et eveniet quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.749030"], ["updated_at", "2020-05-05 17:26:23.749030"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Quisquam iusto tenetur sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.750967"], ["updated_at", "2020-05-05 17:26:23.750967"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Itaque pariatur magnam facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.752516"], ["updated_at", "2020-05-05 17:26:23.752516"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Possimus saepe voluptatem qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.753825"], ["updated_at", "2020-05-05 17:26:23.753825"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Aut delectus voluptatem est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.755126"], ["updated_at", "2020-05-05 17:26:23.755126"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Nihil qui veniam eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.757513"], ["updated_at", "2020-05-05 17:26:23.757513"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Nemo sequi reiciendis qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.760067"], ["updated_at", "2020-05-05 17:26:23.760067"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Aut nisi neque sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.761511"], ["updated_at", "2020-05-05 17:26:23.761511"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Quos aut cupiditate maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.762831"], ["updated_at", "2020-05-05 17:26:23.762831"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Tara Osinski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PfAjszRaAhyglxzj4whW/ei41pi6xQNXCxkJVUX0QUKX5u/rE68hO"], ["created_at", "2020-05-05 17:26:23.765410"], ["updated_at", "2020-05-05 17:26:23.765410"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.5ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "at"], ["description", "Minus voluptatem assumenda nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.785423"], ["updated_at", "2020-05-05 17:26:23.785423"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Et minus quae consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.788721"], ["updated_at", "2020-05-05 17:26:23.788721"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deserunt"], ["description", "Et molestiae soluta repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.791091"], ["updated_at", "2020-05-05 17:26:23.791091"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Aliquid aperiam debitis iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.792777"], ["updated_at", "2020-05-05 17:26:23.792777"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Quas dignissimos amet aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.794130"], ["updated_at", "2020-05-05 17:26:23.794130"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "occaecati"], ["description", "Minus illum dolores deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.795441"], ["updated_at", "2020-05-05 17:26:23.795441"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "autem"], ["description", "Dignissimos provident numquam molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.796820"], ["updated_at", "2020-05-05 17:26:23.796820"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Sunt consequatur autem sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.799729"], ["updated_at", "2020-05-05 17:26:23.799729"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Nostrum excepturi qui dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.801621"], ["updated_at", "2020-05-05 17:26:23.801621"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Occaecati labore harum voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.802938"], ["updated_at", "2020-05-05 17:26:23.802938"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mr. Dewitt Hartmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DCYZ6N8.d1Unqpm.tTk9vOpLsZ1AXirCN8VcR0f54bLaiwSaCthFe"], ["created_at", "2020-05-05 17:26:23.805645"], ["updated_at", "2020-05-05 17:26:23.805645"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.49ms)
+Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2846)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Adipisci voluptas fugit tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.828837"], ["updated_at", "2020-05-05 17:26:23.828837"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "beatae"], ["description", "Esse reprehenderit aliquid et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.832662"], ["updated_at", "2020-05-05 17:26:23.832662"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Modi sapiente beatae et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.834419"], ["updated_at", "2020-05-05 17:26:23.834419"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cupiditate"], ["description", "Autem voluptatem corrupti sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.835764"], ["updated_at", "2020-05-05 17:26:23.835764"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Molestiae ipsum corrupti labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.837305"], ["updated_at", "2020-05-05 17:26:23.837305"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Voluptas tempora architecto earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.838712"], ["updated_at", "2020-05-05 17:26:23.838712"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Sequi repudiandae impedit quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.841006"], ["updated_at", "2020-05-05 17:26:23.841006"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Iste quis non et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.843617"], ["updated_at", "2020-05-05 17:26:23.843617"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Sed ipsam at quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.845199"], ["updated_at", "2020-05-05 17:26:23.845199"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Ut et odio asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.846512"], ["updated_at", "2020-05-05 17:26:23.846512"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Vanesa Quigley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IJ.eJFHscuhBmdBhmG2YHuE3BC0VqzpEoMe273f4vh7zufW/ne2dO"], ["created_at", "2020-05-05 17:26:23.849288"], ["updated_at", "2020-05-05 17:26:23.849288"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.24ms)
+Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.3ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.888437"], ["updated_at", "2020-05-05 17:26:23.888437"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[36mUserMeet Create (0.2ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (5.38ms)
+Completed 201 Created in 36ms (Views: 6.1ms | ActiveRecord: 1.2ms | Allocations: 6775)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Aut eos voluptate necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.920811"], ["updated_at", "2020-05-05 17:26:23.920811"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Blanditiis omnis sed dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.926061"], ["updated_at", "2020-05-05 17:26:23.926061"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Adipisci enim temporibus perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.927917"], ["updated_at", "2020-05-05 17:26:23.927917"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Sunt nobis temporibus quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.929378"], ["updated_at", "2020-05-05 17:26:23.929378"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Voluptatem assumenda eos voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.930687"], ["updated_at", "2020-05-05 17:26:23.930687"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Sint consequatur voluptatem perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.932123"], ["updated_at", "2020-05-05 17:26:23.932123"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Delectus reiciendis qui aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.934724"], ["updated_at", "2020-05-05 17:26:23.934724"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Deleniti consequuntur atque est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.936997"], ["updated_at", "2020-05-05 17:26:23.936997"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Libero molestiae suscipit ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.938398"], ["updated_at", "2020-05-05 17:26:23.938398"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Est non aspernatur beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.939711"], ["updated_at", "2020-05-05 17:26:23.939711"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Windy Ondricka"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$J/jvr8kn1mYXcQCZnOf05e3rcQs0kG3BzZFwYQu7prZU3SNkT8rtq"], ["created_at", "2020-05-05 17:26:23.942294"], ["updated_at", "2020-05-05 17:26:23.942294"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.34ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2846)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Learn Elm", "max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.952961"], ["updated_at", "2020-05-05 17:26:23.952961"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[36mUserMeet Create (0.2ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.48ms)
+Completed 201 Created in 5ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 2251)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Ea odit consectetur qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.967263"], ["updated_at", "2020-05-05 17:26:23.967263"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Omnis omnis necessitatibus ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.970540"], ["updated_at", "2020-05-05 17:26:23.970540"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Fugit rerum esse voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.972785"], ["updated_at", "2020-05-05 17:26:23.972785"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Et placeat quos sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.975080"], ["updated_at", "2020-05-05 17:26:23.975080"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Deleniti id et omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.976485"], ["updated_at", "2020-05-05 17:26:23.976485"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Voluptate eos quis voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.978210"], ["updated_at", "2020-05-05 17:26:23.978210"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Doloremque explicabo et ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.980544"], ["updated_at", "2020-05-05 17:26:23.980544"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eius"], ["description", "Voluptatem officiis similique doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.981966"], ["updated_at", "2020-05-05 17:26:23.981966"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Commodi deleniti illo sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.983305"], ["updated_at", "2020-05-05 17:26:23.983305"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Mollitia molestias iure qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:23.984624"], ["updated_at", "2020-05-05 17:26:23.984624"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Louis Dibbert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gKM2OAlorkh6iuIcPE8XHu503VIh41i48tsmJmn9hIYOpYyUZKopi"], ["created_at", "2020-05-05 17:26:23.987311"], ["updated_at", "2020-05-05 17:26:23.987311"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.54ms)
+Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 4090)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Nam sint aut qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:24.017099"], ["updated_at", "2020-05-05 17:26:24.017099"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vero"], ["description", "Temporibus aliquid doloremque eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:24.020176"], ["updated_at", "2020-05-05 17:26:24.020176"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Deleniti vel sunt voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:24.021857"], ["updated_at", "2020-05-05 17:26:24.021857"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eius"], ["description", "Animi quae est quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:24.023405"], ["updated_at", "2020-05-05 17:26:24.023405"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Est aut dignissimos dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:24.051300"], ["updated_at", "2020-05-05 17:26:24.051300"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Natus ea placeat dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:24.054068"], ["updated_at", "2020-05-05 17:26:24.054068"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Voluptatem magni voluptas sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:24.055951"], ["updated_at", "2020-05-05 17:26:24.055951"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Consectetur ipsam esse alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:24.057408"], ["updated_at", "2020-05-05 17:26:24.057408"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Sed nemo non doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:24.058984"], ["updated_at", "2020-05-05 17:26:24.058984"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Exercitationem dolorem voluptatum quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:26:24.060519"], ["updated_at", "2020-05-05 17:26:24.060519"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Gertie Sanford"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vFk9ByXoZsUK69XPh2tsOOmvl.2lSd3jCF0nSKrBLY.8.y.SiLXS6"], ["created_at", "2020-05-05 17:26:24.063482"], ["updated_at", "2020-05-05 17:26:24.063482"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:24 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.46ms)
+Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms | Allocations: 2845)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:26:24 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 10ms (Views: 0.5ms | ActiveRecord: 0.3ms | Allocations: 3697)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (159.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (90.3ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (103.1ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (80.7ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (97.4ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (95.7ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (75.1ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Et molestiae eum expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.030955"], ["updated_at", "2020-05-05 17:27:04.030955"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Ut numquam occaecati nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.038856"], ["updated_at", "2020-05-05 17:27:04.038856"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Natus mollitia laboriosam aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.040687"], ["updated_at", "2020-05-05 17:27:04.040687"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Dignissimos quae quis dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.056582"], ["updated_at", "2020-05-05 17:27:04.056582"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Qui iste repudiandae est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.058399"], ["updated_at", "2020-05-05 17:27:04.058399"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Sit est veniam maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.059772"], ["updated_at", "2020-05-05 17:27:04.059772"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Libero ratione officia adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.061038"], ["updated_at", "2020-05-05 17:27:04.061038"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "A eos facilis qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.062412"], ["updated_at", "2020-05-05 17:27:04.062412"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Similique omnis iste labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.063726"], ["updated_at", "2020-05-05 17:27:04.063726"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorum"], ["description", "Eius velit reiciendis fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.064979"], ["updated_at", "2020-05-05 17:27:04.064979"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Aron Mueller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Lw22/nzGmNdvNC9CZSugl./HahH1MC658peOCyPshkqAceSZoo2D6"], ["created_at", "2020-05-05 17:27:04.080215"], ["updated_at", "2020-05-05 17:27:04.080215"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.95ms)
+Completed 200 OK in 13ms (Views: 10.1ms | ActiveRecord: 0.4ms | Allocations: 4085)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Modi non ex impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.149062"], ["updated_at", "2020-05-05 17:27:04.149062"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Ea ea voluptatem in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.152950"], ["updated_at", "2020-05-05 17:27:04.152950"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Rerum voluptatibus id sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.155387"], ["updated_at", "2020-05-05 17:27:04.155387"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Et rerum nesciunt cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.157955"], ["updated_at", "2020-05-05 17:27:04.157955"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Et et fugiat sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.159628"], ["updated_at", "2020-05-05 17:27:04.159628"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Nam voluptatem in debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.160986"], ["updated_at", "2020-05-05 17:27:04.160986"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Asperiores qui odit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.162338"], ["updated_at", "2020-05-05 17:27:04.162338"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Odio consectetur illo voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.163601"], ["updated_at", "2020-05-05 17:27:04.163601"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Sed soluta ut blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.164888"], ["updated_at", "2020-05-05 17:27:04.164888"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Consectetur nihil illum eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.166180"], ["updated_at", "2020-05-05 17:27:04.166180"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Wilburn Bergnaum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$laE.uFzFEHOFGzFg3gZpCeqrEHB7JBIXa8UrQsLV.9rv10abE8icO"], ["created_at", "2020-05-05 17:27:04.169044"], ["updated_at", "2020-05-05 17:27:04.169044"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.03ms)
+Completed 200 OK in 8ms (Views: 5.9ms | ActiveRecord: 0.4ms | Allocations: 2842)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Occaecati animi omnis incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.189514"], ["updated_at", "2020-05-05 17:27:04.189514"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "In et odit autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.193463"], ["updated_at", "2020-05-05 17:27:04.193463"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Vitae architecto tempora sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.195546"], ["updated_at", "2020-05-05 17:27:04.195546"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Sapiente culpa non impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.198952"], ["updated_at", "2020-05-05 17:27:04.198952"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nesciunt"], ["description", "Iste quia est incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.201233"], ["updated_at", "2020-05-05 17:27:04.201233"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ex"], ["description", "Omnis temporibus sint consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.202588"], ["updated_at", "2020-05-05 17:27:04.202588"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Libero et officiis ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.203903"], ["updated_at", "2020-05-05 17:27:04.203903"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Ullam dicta non sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.205183"], ["updated_at", "2020-05-05 17:27:04.205183"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Et praesentium consequuntur illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.206481"], ["updated_at", "2020-05-05 17:27:04.206481"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Voluptatum repellat quaerat in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.207773"], ["updated_at", "2020-05-05 17:27:04.207773"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Yetta Predovic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2Ozp5/GCF4ct5w3/IR003OFE/No2OUXrlJzNwXvCsXnJqktZKXgri"], ["created_at", "2020-05-05 17:27:04.210519"], ["updated_at", "2020-05-05 17:27:04.210519"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.46ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (14.09ms)
+Completed 200 OK in 54ms (Views: 18.2ms | ActiveRecord: 0.8ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Ut velit aut aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.287137"], ["updated_at", "2020-05-05 17:27:04.287137"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Occaecati quo praesentium aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.290056"], ["updated_at", "2020-05-05 17:27:04.290056"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Consequatur et quos aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.291714"], ["updated_at", "2020-05-05 17:27:04.291714"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Nobis dolores natus optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.294088"], ["updated_at", "2020-05-05 17:27:04.294088"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Soluta et omnis voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.298088"], ["updated_at", "2020-05-05 17:27:04.298088"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Nulla rerum in sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.300779"], ["updated_at", "2020-05-05 17:27:04.300779"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consectetur"], ["description", "Dolor repudiandae nihil qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.302643"], ["updated_at", "2020-05-05 17:27:04.302643"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "At doloribus deleniti corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.303983"], ["updated_at", "2020-05-05 17:27:04.303983"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Magni blanditiis quos voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.305251"], ["updated_at", "2020-05-05 17:27:04.305251"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "possimus"], ["description", "Incidunt velit et magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.306627"], ["updated_at", "2020-05-05 17:27:04.306627"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Hilario Altenwerth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XZGVD/ibpvEGmb8jcYzTWeo79tNrnUMaWk4veSIoyKROmCZmhXSsK"], ["created_at", "2020-05-05 17:27:04.309381"], ["updated_at", "2020-05-05 17:27:04.309381"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.11ms)
+Completed 200 OK in 8ms (Views: 6.0ms | ActiveRecord: 0.3ms | Allocations: 2844)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.34ms)
+Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.2ms | Allocations: 1239)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Nemo sint enim dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.335915"], ["updated_at", "2020-05-05 17:27:04.335915"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Ipsam fugit libero perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.339924"], ["updated_at", "2020-05-05 17:27:04.339924"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Quis ad repudiandae omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.341503"], ["updated_at", "2020-05-05 17:27:04.341503"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Ullam esse quia culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.342830"], ["updated_at", "2020-05-05 17:27:04.342830"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "optio"], ["description", "Illo ipsam consequuntur optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.344311"], ["updated_at", "2020-05-05 17:27:04.344311"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Temporibus aperiam sequi alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.345689"], ["updated_at", "2020-05-05 17:27:04.345689"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Et quibusdam corrupti ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.347080"], ["updated_at", "2020-05-05 17:27:04.347080"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Consequatur deleniti rem quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.348419"], ["updated_at", "2020-05-05 17:27:04.348419"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "optio"], ["description", "Earum consequatur repellendus vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.349899"], ["updated_at", "2020-05-05 17:27:04.349899"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Ipsam cum repudiandae itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.351219"], ["updated_at", "2020-05-05 17:27:04.351219"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Gabriele Denesik II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aMvnguhLRjWaqvYjNz0jUuQWOiysy9UhifPLyglshSfmg4Eo1PmIa"], ["created_at", "2020-05-05 17:27:04.354546"], ["updated_at", "2020-05-05 17:27:04.354546"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.43ms)
+Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.3ms | Allocations: 2844)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "doloremque"], ["description", "Esse sit nostrum provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.379046"], ["updated_at", "2020-05-05 17:27:04.379046"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Est ullam est iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.382762"], ["updated_at", "2020-05-05 17:27:04.382762"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Quas quia voluptatibus non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.384276"], ["updated_at", "2020-05-05 17:27:04.384276"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Temporibus enim animi rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.385603"], ["updated_at", "2020-05-05 17:27:04.385603"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Quos culpa sit rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.386877"], ["updated_at", "2020-05-05 17:27:04.386877"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "provident"], ["description", "Possimus aspernatur et voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.388176"], ["updated_at", "2020-05-05 17:27:04.388176"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Possimus praesentium magni doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.389655"], ["updated_at", "2020-05-05 17:27:04.389655"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Doloribus labore consequuntur qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.390968"], ["updated_at", "2020-05-05 17:27:04.390968"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Architecto atque aut voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.392492"], ["updated_at", "2020-05-05 17:27:04.392492"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Sunt dolores illum totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.395810"], ["updated_at", "2020-05-05 17:27:04.395810"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Nelida McClure"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$INcXLs2xrdJlFU8ltLKsKer0myccNK3pCfIJj9FyBO4BgtmB3vGPu"], ["created_at", "2020-05-05 17:27:04.400788"], ["updated_at", "2020-05-05 17:27:04.400788"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.43ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "animi"], ["description", "Sunt neque a odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.425871"], ["updated_at", "2020-05-05 17:27:04.425871"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Sit voluptatem molestiae et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.428907"], ["updated_at", "2020-05-05 17:27:04.428907"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Repellat velit aut sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.430554"], ["updated_at", "2020-05-05 17:27:04.430554"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Et ex sed aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.431939"], ["updated_at", "2020-05-05 17:27:04.431939"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Omnis incidunt in optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.434446"], ["updated_at", "2020-05-05 17:27:04.434446"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minus"], ["description", "Eum veritatis quod placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.437334"], ["updated_at", "2020-05-05 17:27:04.437334"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Iste voluptas atque ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.440447"], ["updated_at", "2020-05-05 17:27:04.440447"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "Amet adipisci quod enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.442404"], ["updated_at", "2020-05-05 17:27:04.442404"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Ut deserunt qui consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.443751"], ["updated_at", "2020-05-05 17:27:04.443751"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Ex alias consequatur iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.445064"], ["updated_at", "2020-05-05 17:27:04.445064"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Merlin Casper"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$w74/7KPPHonjJ18a1BWCVeFWjfUfkZofwSHYk0xZ/M9w18UAHff.i"], ["created_at", "2020-05-05 17:27:04.447681"], ["updated_at", "2020-05-05 17:27:04.447681"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.29ms)
+Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.490054"], ["updated_at", "2020-05-05 17:27:04.490054"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[36mUserMeet Create (0.3ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.52ms)
+Completed 201 Created in 32ms (Views: 1.0ms | ActiveRecord: 1.3ms | Allocations: 6775)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (39.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Voluptatem officiis velit quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.550316"], ["updated_at", "2020-05-05 17:27:04.550316"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Unde qui voluptatum a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.553145"], ["updated_at", "2020-05-05 17:27:04.553145"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Velit itaque omnis incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.556176"], ["updated_at", "2020-05-05 17:27:04.556176"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Quis ipsa officiis rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.559124"], ["updated_at", "2020-05-05 17:27:04.559124"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Dolores voluptas temporibus saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.562023"], ["updated_at", "2020-05-05 17:27:04.562023"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Nostrum dolor accusantium odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.563842"], ["updated_at", "2020-05-05 17:27:04.563842"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Est quae iste consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.565183"], ["updated_at", "2020-05-05 17:27:04.565183"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Et sapiente est et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.566454"], ["updated_at", "2020-05-05 17:27:04.566454"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Et reiciendis facere voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.567989"], ["updated_at", "2020-05-05 17:27:04.567989"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Dolores eius sed nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.569562"], ["updated_at", "2020-05-05 17:27:04.569562"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Magdalene Gleichner V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VlFVFn1NPE8IIMqb47bIHOYtq9.0DZo5n8G4iBdShsBX25Tkl/lM."], ["created_at", "2020-05-05 17:27:04.572206"], ["updated_at", "2020-05-05 17:27:04.572206"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.2ms)
+Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.586839"], ["updated_at", "2020-05-05 17:27:04.586839"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[36mUserMeet Create (0.2ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.63ms)
+Completed 201 Created in 7ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 2251)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (9.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Deleniti beatae eaque illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.605094"], ["updated_at", "2020-05-05 17:27:04.605094"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Rerum molestias corporis occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.608877"], ["updated_at", "2020-05-05 17:27:04.608877"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Aut dolor hic adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.610677"], ["updated_at", "2020-05-05 17:27:04.610677"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Qui facere aperiam blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.612366"], ["updated_at", "2020-05-05 17:27:04.612366"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Molestiae ut quidem quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.614324"], ["updated_at", "2020-05-05 17:27:04.614324"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Dolores modi expedita ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.624777"], ["updated_at", "2020-05-05 17:27:04.624777"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Molestiae voluptates eligendi consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.626384"], ["updated_at", "2020-05-05 17:27:04.626384"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odio"], ["description", "Hic enim ea doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.627751"], ["updated_at", "2020-05-05 17:27:04.627751"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Beatae debitis nisi saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.630549"], ["updated_at", "2020-05-05 17:27:04.630549"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "A ea quia fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.632273"], ["updated_at", "2020-05-05 17:27:04.632273"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Babara King"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$81zwssJd54da9WIKDbO5BupCr.TK9oUbz9Etsl3ROXlVKdIsyUmCS"], ["created_at", "2020-05-05 17:27:04.635455"], ["updated_at", "2020-05-05 17:27:04.635455"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.31ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 4090)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.8ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "provident"], ["description", "Saepe blanditiis doloribus illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.666269"], ["updated_at", "2020-05-05 17:27:04.666269"], ["created_by", "1"]]
+ [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quam"], ["description", "Voluptatum saepe possimus ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.671571"], ["updated_at", "2020-05-05 17:27:04.671571"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aliquid"], ["description", "Nulla est quo quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.674688"], ["updated_at", "2020-05-05 17:27:04.674688"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Rerum harum quis ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.678157"], ["updated_at", "2020-05-05 17:27:04.678157"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Vitae illo labore exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.681268"], ["updated_at", "2020-05-05 17:27:04.681268"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Tenetur nostrum culpa unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.682846"], ["updated_at", "2020-05-05 17:27:04.682846"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Magnam reprehenderit cumque nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.684441"], ["updated_at", "2020-05-05 17:27:04.684441"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Ad enim totam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.686585"], ["updated_at", "2020-05-05 17:27:04.686585"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Necessitatibus aliquid assumenda doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.688910"], ["updated_at", "2020-05-05 17:27:04.688910"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Quia blanditiis tempore accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:04.691845"], ["updated_at", "2020-05-05 17:27:04.691845"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Teressa Gutkowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HiXGo32mzcnD9zhNCQs6tOFXD49gy1nw493/PskItF3Ehr1QUL0.."], ["created_at", "2020-05-05 17:27:04.695452"], ["updated_at", "2020-05-05 17:27:04.695452"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.97ms)
+Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 5ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 3697)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (326.5ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (93.5ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.2ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (111.2ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (1.0ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (89.9ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (89.0ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.4ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.3ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (112.8ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.4ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (98.9ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Enim aut occaecati aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:39.951383"], ["updated_at", "2020-05-05 17:27:39.951383"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Ut fugit quo qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:39.959055"], ["updated_at", "2020-05-05 17:27:39.959055"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Eligendi officia ad nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:39.961190"], ["updated_at", "2020-05-05 17:27:39.961190"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Consequuntur hic non veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:39.975585"], ["updated_at", "2020-05-05 17:27:39.975585"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Repellat ipsa eaque magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:39.977376"], ["updated_at", "2020-05-05 17:27:39.977376"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Aperiam reprehenderit ea nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:39.979039"], ["updated_at", "2020-05-05 17:27:39.979039"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "at"], ["description", "Quisquam asperiores fugiat qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:39.980463"], ["updated_at", "2020-05-05 17:27:39.980463"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Commodi dicta voluptas aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:39.981874"], ["updated_at", "2020-05-05 17:27:39.981874"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Qui maiores amet iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:39.983197"], ["updated_at", "2020-05-05 17:27:39.983197"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "modi"], ["description", "Nesciunt ut voluptatum necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:39.984591"], ["updated_at", "2020-05-05 17:27:39.984591"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Graciela Christiansen PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rBtvbP3igiFyh4dZhdH7TuIZYE70PQp7RH5LOLjmsXBJ50iGkVaQu"], ["created_at", "2020-05-05 17:27:39.999781"], ["updated_at", "2020-05-05 17:27:39.999781"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.54ms)
+Completed 200 OK in 13ms (Views: 10.4ms | ActiveRecord: 0.4ms | Allocations: 4084)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Vel perferendis vero rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.064338"], ["updated_at", "2020-05-05 17:27:40.064338"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "similique"], ["description", "Atque enim voluptatem a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.068380"], ["updated_at", "2020-05-05 17:27:40.068380"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Nobis voluptatem voluptas eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.070170"], ["updated_at", "2020-05-05 17:27:40.070170"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugiat"], ["description", "Cumque voluptatibus voluptatem sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.071530"], ["updated_at", "2020-05-05 17:27:40.071530"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Aut error rerum voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.072813"], ["updated_at", "2020-05-05 17:27:40.072813"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Natus quam et ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.074197"], ["updated_at", "2020-05-05 17:27:40.074197"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "esse"], ["description", "Ut aut aliquid voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.075910"], ["updated_at", "2020-05-05 17:27:40.075910"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Voluptate vero et eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.078077"], ["updated_at", "2020-05-05 17:27:40.078077"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quae"], ["description", "Delectus ex molestiae facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.079516"], ["updated_at", "2020-05-05 17:27:40.079516"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nam"], ["description", "Ut nemo non sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.080787"], ["updated_at", "2020-05-05 17:27:40.080787"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Wiley Williamson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uVPZAEDr1srlNUSnZC2vGOGCQdmEwBmir9cAbyPosmPaUE3DgqLcy"], ["created_at", "2020-05-05 17:27:40.083988"], ["updated_at", "2020-05-05 17:27:40.083988"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.15ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2844)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Error voluptatem numquam itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.101584"], ["updated_at", "2020-05-05 17:27:40.101584"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Incidunt consequatur praesentium itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.104766"], ["updated_at", "2020-05-05 17:27:40.104766"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Numquam doloremque itaque repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.107027"], ["updated_at", "2020-05-05 17:27:40.107027"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Numquam blanditiis aut non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.108519"], ["updated_at", "2020-05-05 17:27:40.108519"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Fuga hic non sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.109981"], ["updated_at", "2020-05-05 17:27:40.109981"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Et itaque est animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.111375"], ["updated_at", "2020-05-05 17:27:40.111375"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Saepe nostrum maiores fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.113728"], ["updated_at", "2020-05-05 17:27:40.113728"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Adipisci quis consectetur atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.115834"], ["updated_at", "2020-05-05 17:27:40.115834"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Similique a sapiente laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.117229"], ["updated_at", "2020-05-05 17:27:40.117229"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Et nostrum recusandae et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.118648"], ["updated_at", "2020-05-05 17:27:40.118648"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Porfirio Harvey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0psJcuijYVU5kXYA2BlsI.lLvWwJx8zqkJbW9FhpyWKyec5Qco0Jy"], ["created_at", "2020-05-05 17:27:40.121291"], ["updated_at", "2020-05-05 17:27:40.121291"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.49ms)
+Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.39ms)
+Completed 200 OK in 52ms (Views: 16.7ms | ActiveRecord: 0.7ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Quasi tempora ut id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.193883"], ["updated_at", "2020-05-05 17:27:40.193883"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Aliquam ipsa laudantium earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.196859"], ["updated_at", "2020-05-05 17:27:40.196859"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Dolorum et repudiandae tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.198548"], ["updated_at", "2020-05-05 17:27:40.198548"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Voluptatem dolorem ea consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.199920"], ["updated_at", "2020-05-05 17:27:40.199920"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "similique"], ["description", "Sint ipsam et voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.201465"], ["updated_at", "2020-05-05 17:27:40.201465"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Iusto aut dolore molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.202847"], ["updated_at", "2020-05-05 17:27:40.202847"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Officia voluptatem a ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.204118"], ["updated_at", "2020-05-05 17:27:40.204118"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Labore sunt quidem magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.207056"], ["updated_at", "2020-05-05 17:27:40.207056"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Omnis ipsa repellat vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.209402"], ["updated_at", "2020-05-05 17:27:40.209402"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Vel sit nostrum similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.211819"], ["updated_at", "2020-05-05 17:27:40.211819"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Dr. Forest Yost"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$b6172NKRGi.Lk9HPgwxp7edzKFIfyMNOHuw.yAmnW5z5bPWvG8Rh6"], ["created_at", "2020-05-05 17:27:40.214642"], ["updated_at", "2020-05-05 17:27:40.214642"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.27ms)
+Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2845)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.57ms)
+Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms | Allocations: 1239)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (32.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Optio magni tempore eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.262892"], ["updated_at", "2020-05-05 17:27:40.262892"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Est eveniet aperiam quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.266067"], ["updated_at", "2020-05-05 17:27:40.266067"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Vitae laboriosam beatae esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.269271"], ["updated_at", "2020-05-05 17:27:40.269271"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Reiciendis eius laboriosam commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.271639"], ["updated_at", "2020-05-05 17:27:40.271639"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Est nesciunt eum facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.273043"], ["updated_at", "2020-05-05 17:27:40.273043"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Blanditiis quas consequuntur necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.274397"], ["updated_at", "2020-05-05 17:27:40.274397"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Omnis numquam nihil assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.275645"], ["updated_at", "2020-05-05 17:27:40.275645"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Repellat eum velit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.276903"], ["updated_at", "2020-05-05 17:27:40.276903"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ipsam"], ["description", "Est quia iure est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.278193"], ["updated_at", "2020-05-05 17:27:40.278193"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Laudantium voluptatem minus ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.279470"], ["updated_at", "2020-05-05 17:27:40.279470"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mr. Celesta Kub"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Q3RwSw8b.elpY.vCGp8E9ucPQjcrrzgHLYoVKnZA4xdx819qC9Fgy"], ["created_at", "2020-05-05 17:27:40.282057"], ["updated_at", "2020-05-05 17:27:40.282057"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.44ms)
+Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "provident"], ["description", "Sed excepturi officiis necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.303561"], ["updated_at", "2020-05-05 17:27:40.303561"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Nobis voluptatem eius eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.307183"], ["updated_at", "2020-05-05 17:27:40.307183"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Deserunt aliquam voluptas placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.310307"], ["updated_at", "2020-05-05 17:27:40.310307"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Voluptate sit ut aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.312048"], ["updated_at", "2020-05-05 17:27:40.312048"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Ut qui eos voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.313441"], ["updated_at", "2020-05-05 17:27:40.313441"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Ducimus itaque officiis corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.314720"], ["updated_at", "2020-05-05 17:27:40.314720"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Voluptatem beatae ut saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.316207"], ["updated_at", "2020-05-05 17:27:40.316207"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Voluptatem tempora minus rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.317597"], ["updated_at", "2020-05-05 17:27:40.317597"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Labore dolorem iusto qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.318954"], ["updated_at", "2020-05-05 17:27:40.318954"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Autem dolore nihil voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.320366"], ["updated_at", "2020-05-05 17:27:40.320366"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Aubrey Collins"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$g3SwvCSsAtwLnY2TtX6S0OGn24hgt/HOoxBENHqi.620.yxk7Xjje"], ["created_at", "2020-05-05 17:27:40.323088"], ["updated_at", "2020-05-05 17:27:40.323088"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.28ms)
+Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.2ms | Allocations: 2845)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laboriosam"], ["description", "Minima consequatur aut non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.349887"], ["updated_at", "2020-05-05 17:27:40.349887"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Velit architecto consequatur sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.354232"], ["updated_at", "2020-05-05 17:27:40.354232"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "amet"], ["description", "Sed natus id possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.355876"], ["updated_at", "2020-05-05 17:27:40.355876"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Temporibus molestias voluptates labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.357613"], ["updated_at", "2020-05-05 17:27:40.357613"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Et commodi sapiente repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.359281"], ["updated_at", "2020-05-05 17:27:40.359281"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Saepe alias eum similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.360777"], ["updated_at", "2020-05-05 17:27:40.360777"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Blanditiis totam similique quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.362148"], ["updated_at", "2020-05-05 17:27:40.362148"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Qui qui quisquam iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.363691"], ["updated_at", "2020-05-05 17:27:40.363691"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Quas quia eius quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.365089"], ["updated_at", "2020-05-05 17:27:40.365089"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "adipisci"], ["description", "Mollitia ut est molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.366808"], ["updated_at", "2020-05-05 17:27:40.366808"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Malorie Dicki"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Jor6k1BoQ8l9n4BTkF6G9e5R8FUi6Wc4Nul34FOsvuI1K/PX2Tmaq"], ["created_at", "2020-05-05 17:27:40.370382"], ["updated_at", "2020-05-05 17:27:40.370382"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.0ms)
+Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.412491"], ["updated_at", "2020-05-05 17:27:40.412491"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[36mUserMeet Create (0.3ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.48ms)
+Completed 201 Created in 32ms (Views: 0.9ms | ActiveRecord: 1.4ms | Allocations: 6775)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Ea sint est perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.439829"], ["updated_at", "2020-05-05 17:27:40.439829"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Consequatur sint dolor ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.442715"], ["updated_at", "2020-05-05 17:27:40.442715"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Qui eum officia accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.444168"], ["updated_at", "2020-05-05 17:27:40.444168"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eveniet"], ["description", "Mollitia voluptatem et vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.445564"], ["updated_at", "2020-05-05 17:27:40.445564"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "Rem aut quis voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.447134"], ["updated_at", "2020-05-05 17:27:40.447134"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Nesciunt laboriosam dolor iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.449049"], ["updated_at", "2020-05-05 17:27:40.449049"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Id incidunt laborum ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.451235"], ["updated_at", "2020-05-05 17:27:40.451235"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Et est tempora autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.452614"], ["updated_at", "2020-05-05 17:27:40.452614"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Ipsum aperiam qui modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.453904"], ["updated_at", "2020-05-05 17:27:40.453904"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "neque"], ["description", "Nesciunt itaque omnis quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.455849"], ["updated_at", "2020-05-05 17:27:40.455849"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Nicolas Schneider"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dVdixBa2G2g2igZBiMXn9u6e59Uiyn/qs.CT9CQglsiHkmrqp3VhK"], ["created_at", "2020-05-05 17:27:40.459065"], ["updated_at", "2020-05-05 17:27:40.459065"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.34ms)
+Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.1ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.473003"], ["updated_at", "2020-05-05 17:27:40.473003"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[36mUserMeet Create (0.2ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.89ms)
+Completed 201 Created in 6ms (Views: 1.3ms | ActiveRecord: 0.7ms | Allocations: 2251)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Natus dolore debitis non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.488000"], ["updated_at", "2020-05-05 17:27:40.488000"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Laborum dolorum voluptate qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.490966"], ["updated_at", "2020-05-05 17:27:40.490966"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Earum fugit quia fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.492388"], ["updated_at", "2020-05-05 17:27:40.492388"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Iste cum dolorum itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.493710"], ["updated_at", "2020-05-05 17:27:40.493710"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Quis dolorem eligendi similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.495449"], ["updated_at", "2020-05-05 17:27:40.495449"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Necessitatibus aspernatur recusandae possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.496886"], ["updated_at", "2020-05-05 17:27:40.496886"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Illum cumque ea sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.499006"], ["updated_at", "2020-05-05 17:27:40.499006"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Sed ducimus tempore cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.501531"], ["updated_at", "2020-05-05 17:27:40.501531"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quibusdam"], ["description", "Aut accusamus corrupti dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.502946"], ["updated_at", "2020-05-05 17:27:40.502946"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Exercitationem corporis sit quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.504315"], ["updated_at", "2020-05-05 17:27:40.504315"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Vena McLaughlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oEyLunoRPSHrFNVqDvzX1OqtXHdYD2uIm.DHRtMUzQy3DVLYVOz36"], ["created_at", "2020-05-05 17:27:40.507675"], ["updated_at", "2020-05-05 17:27:40.507675"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.82ms)
+Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2845)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 4090)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tempora"], ["description", "Qui iusto neque architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.569385"], ["updated_at", "2020-05-05 17:27:40.569385"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Et in animi quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.572714"], ["updated_at", "2020-05-05 17:27:40.572714"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Officia aliquid qui soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.574569"], ["updated_at", "2020-05-05 17:27:40.574569"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Alias consequatur suscipit numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.576484"], ["updated_at", "2020-05-05 17:27:40.576484"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Ea totam natus reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.577855"], ["updated_at", "2020-05-05 17:27:40.577855"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Est ut sed ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.579247"], ["updated_at", "2020-05-05 17:27:40.579247"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Et at illum explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.580530"], ["updated_at", "2020-05-05 17:27:40.580530"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Praesentium id placeat id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.582498"], ["updated_at", "2020-05-05 17:27:40.582498"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quam"], ["description", "Voluptatem sint quasi quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.583970"], ["updated_at", "2020-05-05 17:27:40.583970"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Quas expedita voluptate mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.585228"], ["updated_at", "2020-05-05 17:27:40.585228"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Angila Koepp PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.hL.wIc.dDdK2HTT8iRUuu92fbNOYH.Ln275jslsVXBnlbRis9CDa"], ["created_at", "2020-05-05 17:27:40.588206"], ["updated_at", "2020-05-05 17:27:40.588206"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.85ms)
+Completed 200 OK in 42ms (Views: 40.6ms | ActiveRecord: 0.3ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 3697)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Commodi est eaque praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.660012"], ["updated_at", "2020-05-05 17:27:40.660012"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Est iure nostrum amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.665731"], ["updated_at", "2020-05-05 17:27:40.665731"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Eos aut sint veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.668109"], ["updated_at", "2020-05-05 17:27:40.668109"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Ducimus aut ipsam qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.670636"], ["updated_at", "2020-05-05 17:27:40.670636"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veritatis"], ["description", "Eum quas ipsum aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.672685"], ["updated_at", "2020-05-05 17:27:40.672685"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Facilis quisquam perferendis eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.675559"], ["updated_at", "2020-05-05 17:27:40.675559"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusamus"], ["description", "Culpa ut asperiores est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.677617"], ["updated_at", "2020-05-05 17:27:40.677617"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "occaecati"], ["description", "Iure autem deserunt ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.678919"], ["updated_at", "2020-05-05 17:27:40.678919"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Magni aut autem dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.680324"], ["updated_at", "2020-05-05 17:27:40.680324"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Facilis eum quia quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.681593"], ["updated_at", "2020-05-05 17:27:40.681593"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Edwardo Connelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CdCmRsGu4Nk7yo/hrZR5PugsJKfoqIZFFiQJMtKNkf9zo0/jCMaAi"], ["created_at", "2020-05-05 17:27:40.684157"], ["updated_at", "2020-05-05 17:27:40.684157"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.18ms)
+Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms | Allocations: 2840)
+Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-05-05 17:27:40.695489"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1090)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Ab eligendi fugiat sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.705605"], ["updated_at", "2020-05-05 17:27:40.705605"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Quas sunt tempore voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.709791"], ["updated_at", "2020-05-05 17:27:40.709791"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Corporis eos exercitationem voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.712195"], ["updated_at", "2020-05-05 17:27:40.712195"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "distinctio"], ["description", "Exercitationem iusto aut nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.714428"], ["updated_at", "2020-05-05 17:27:40.714428"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Voluptas occaecati dolorem veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.715704"], ["updated_at", "2020-05-05 17:27:40.715704"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Veritatis quisquam ut ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.717033"], ["updated_at", "2020-05-05 17:27:40.717033"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Nisi molestias aut dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.718332"], ["updated_at", "2020-05-05 17:27:40.718332"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Reiciendis earum iste dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.719595"], ["updated_at", "2020-05-05 17:27:40.719595"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quasi"], ["description", "Et et aut autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.720825"], ["updated_at", "2020-05-05 17:27:40.720825"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Quo et ut molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:27:40.722075"], ["updated_at", "2020-05-05 17:27:40.722075"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Dante Brown"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WvPet997Sss3ZSFOsaiEQuqaBaizKrKRKYJXPfGgYr9ntB65RGm3e"], ["created_at", "2020-05-05 17:27:40.724605"], ["updated_at", "2020-05-05 17:27:40.724605"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.95ms)
+Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 14:27:40 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.1ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-05-05 17:27:40.736287"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 999)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (144.1ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (109.5ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.7ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (128.8ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (86.6ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (97.5ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.9ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (96.6ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (89.4ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (4.6ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Expedita et recusandae dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.360398"], ["updated_at", "2020-05-05 17:28:05.360398"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Dolor dolorum ullam quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.367589"], ["updated_at", "2020-05-05 17:28:05.367589"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Consectetur exercitationem corrupti explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.369951"], ["updated_at", "2020-05-05 17:28:05.369951"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Similique officia placeat enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.383570"], ["updated_at", "2020-05-05 17:28:05.383570"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Quos eum architecto ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.385246"], ["updated_at", "2020-05-05 17:28:05.385246"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "commodi"], ["description", "Eius est consequuntur quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.386735"], ["updated_at", "2020-05-05 17:28:05.386735"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ratione"], ["description", "Ad modi possimus explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.388319"], ["updated_at", "2020-05-05 17:28:05.388319"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Nostrum voluptatem natus vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.389805"], ["updated_at", "2020-05-05 17:28:05.389805"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Nostrum ullam exercitationem qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.391314"], ["updated_at", "2020-05-05 17:28:05.391314"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reiciendis"], ["description", "Fugiat eos error recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.392730"], ["updated_at", "2020-05-05 17:28:05.392730"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Shiela Ondricka"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uX3rrOx8YUZK9RlJpidvh.BSBfTct6v2LEF/Q.5ptRKlV93ScxjQ."], ["created_at", "2020-05-05 17:28:05.408209"], ["updated_at", "2020-05-05 17:28:05.408209"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.34ms)
+Completed 200 OK in 13ms (Views: 9.8ms | ActiveRecord: 0.4ms | Allocations: 4086)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Incidunt enim fugiat eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.473795"], ["updated_at", "2020-05-05 17:28:05.473795"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Voluptatum omnis et vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.477134"], ["updated_at", "2020-05-05 17:28:05.477134"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "In deleniti asperiores placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.479383"], ["updated_at", "2020-05-05 17:28:05.479383"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Necessitatibus temporibus placeat alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.480769"], ["updated_at", "2020-05-05 17:28:05.480769"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Non eius repellat aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.482268"], ["updated_at", "2020-05-05 17:28:05.482268"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Dignissimos a veritatis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.484377"], ["updated_at", "2020-05-05 17:28:05.484377"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "modi"], ["description", "Et minima fugiat ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.486566"], ["updated_at", "2020-05-05 17:28:05.486566"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Nam et et tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.488220"], ["updated_at", "2020-05-05 17:28:05.488220"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Amet earum at asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.489514"], ["updated_at", "2020-05-05 17:28:05.489514"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minima"], ["description", "Sint aut aliquam rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.490837"], ["updated_at", "2020-05-05 17:28:05.490837"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Sabina Spinka"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tP6jipZAxfY4ns2TCczxeOh4.JPYWDx4eDZXTbZNqfXKXaucUfJh2"], ["created_at", "2020-05-05 17:28:05.493436"], ["updated_at", "2020-05-05 17:28:05.493436"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.15ms)
+Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2843)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Ex nostrum atque cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.510971"], ["updated_at", "2020-05-05 17:28:05.510971"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "temporibus"], ["description", "Ex tenetur dolores ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.514680"], ["updated_at", "2020-05-05 17:28:05.514680"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Accusamus rem nihil ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.516543"], ["updated_at", "2020-05-05 17:28:05.516543"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Voluptas ea placeat voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.517982"], ["updated_at", "2020-05-05 17:28:05.517982"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Sit consequuntur impedit voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.519411"], ["updated_at", "2020-05-05 17:28:05.519411"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Officia est laudantium fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.520805"], ["updated_at", "2020-05-05 17:28:05.520805"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Hic optio cumque adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.522885"], ["updated_at", "2020-05-05 17:28:05.522885"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Iure ipsum occaecati adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.525508"], ["updated_at", "2020-05-05 17:28:05.525508"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Placeat ipsum quae consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.526940"], ["updated_at", "2020-05-05 17:28:05.526940"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Et quaerat et in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.528379"], ["updated_at", "2020-05-05 17:28:05.528379"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Maurice Rempel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MHKyXg13LbUZ4.u1Tc1ksO6Y/DYFELYgPI4dEWoi5nptzR0qrc1mG"], ["created_at", "2020-05-05 17:28:05.530990"], ["updated_at", "2020-05-05 17:28:05.530990"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.55ms)
+Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.23ms)
+Completed 200 OK in 51ms (Views: 16.6ms | ActiveRecord: 0.7ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Est laudantium cumque iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.600579"], ["updated_at", "2020-05-05 17:28:05.600579"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Numquam dolorem facilis qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.603770"], ["updated_at", "2020-05-05 17:28:05.603770"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Explicabo qui voluptatem voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.605843"], ["updated_at", "2020-05-05 17:28:05.605843"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequuntur"], ["description", "Dolor quo doloribus commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.607264"], ["updated_at", "2020-05-05 17:28:05.607264"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Libero aliquid facilis in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.609344"], ["updated_at", "2020-05-05 17:28:05.609344"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Delectus est voluptas aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.610903"], ["updated_at", "2020-05-05 17:28:05.610903"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Dolor aspernatur corrupti saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.612347"], ["updated_at", "2020-05-05 17:28:05.612347"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illum"], ["description", "Perspiciatis qui veniam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.613696"], ["updated_at", "2020-05-05 17:28:05.613696"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Id tenetur molestiae reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.615023"], ["updated_at", "2020-05-05 17:28:05.615023"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Veritatis perspiciatis expedita rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.616558"], ["updated_at", "2020-05-05 17:28:05.616558"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Randi Heller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$U1PzLmUfIaLQXfFq8D4n5uTNKSZxoLiq/C6.KppI.2DXeKfahpLxW"], ["created_at", "2020-05-05 17:28:05.620851"], ["updated_at", "2020-05-05 17:28:05.620851"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.47ms)
+Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2846)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.44ms)
+Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Sed id atque omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.643338"], ["updated_at", "2020-05-05 17:28:05.643338"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ducimus"], ["description", "Doloribus sint similique nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.646900"], ["updated_at", "2020-05-05 17:28:05.646900"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Et eaque et quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.649310"], ["updated_at", "2020-05-05 17:28:05.649310"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perspiciatis"], ["description", "Vel laudantium nihil dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.651740"], ["updated_at", "2020-05-05 17:28:05.651740"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "necessitatibus"], ["description", "Quis similique cum aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.653435"], ["updated_at", "2020-05-05 17:28:05.653435"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Id dolorem harum reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.654837"], ["updated_at", "2020-05-05 17:28:05.654837"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Sed quidem in dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.656706"], ["updated_at", "2020-05-05 17:28:05.656706"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Cumque sint aut totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.660211"], ["updated_at", "2020-05-05 17:28:05.660211"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "non"], ["description", "Est voluptatem totam laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.661995"], ["updated_at", "2020-05-05 17:28:05.661995"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Vero minus unde voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.663361"], ["updated_at", "2020-05-05 17:28:05.663361"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Willodean Predovic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eb3BxHVEoojwlNd/mBcnYOffb2c/6THRaLQM.7.G1fMeFH6w..b72"], ["created_at", "2020-05-05 17:28:05.666010"], ["updated_at", "2020-05-05 17:28:05.666010"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.26ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2841)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dicta"], ["description", "Itaque in exercitationem blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.685605"], ["updated_at", "2020-05-05 17:28:05.685605"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Reprehenderit possimus illo culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.688443"], ["updated_at", "2020-05-05 17:28:05.688443"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Cum et quasi sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.690003"], ["updated_at", "2020-05-05 17:28:05.690003"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestiae"], ["description", "Commodi fugit consequatur alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.691938"], ["updated_at", "2020-05-05 17:28:05.691938"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Placeat at illo voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.693708"], ["updated_at", "2020-05-05 17:28:05.693708"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Provident temporibus labore commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.695072"], ["updated_at", "2020-05-05 17:28:05.695072"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Nobis aut quidem quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.696408"], ["updated_at", "2020-05-05 17:28:05.696408"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Eaque qui est qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.698946"], ["updated_at", "2020-05-05 17:28:05.698946"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Repellendus consequuntur ut incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.701180"], ["updated_at", "2020-05-05 17:28:05.701180"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Id accusamus vitae veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.702775"], ["updated_at", "2020-05-05 17:28:05.702775"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Doria Weimann Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$E58sw.vPEpkSNWySVTuZ2.MOA64eDsBtYtBY1TlFz4EPnkSoJxwKe"], ["created_at", "2020-05-05 17:28:05.705398"], ["updated_at", "2020-05-05 17:28:05.705398"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (2.97ms)
+Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms | Allocations: 2843)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (4.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (30.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Ut officia molestiae architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.727026"], ["updated_at", "2020-05-05 17:28:05.727026"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "a"], ["description", "Ut consectetur quam quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.759724"], ["updated_at", "2020-05-05 17:28:05.759724"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "deleniti"], ["description", "Quisquam et accusamus commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.761380"], ["updated_at", "2020-05-05 17:28:05.761380"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Sit possimus fugiat aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.763021"], ["updated_at", "2020-05-05 17:28:05.763021"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "a"], ["description", "Ipsam sapiente qui modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.764462"], ["updated_at", "2020-05-05 17:28:05.764462"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Doloribus molestiae nemo maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.765974"], ["updated_at", "2020-05-05 17:28:05.765974"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Ducimus autem nesciunt sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.767555"], ["updated_at", "2020-05-05 17:28:05.767555"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ad"], ["description", "Unde eveniet iure est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.769058"], ["updated_at", "2020-05-05 17:28:05.769058"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Rerum beatae doloremque aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.770510"], ["updated_at", "2020-05-05 17:28:05.770510"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Quas nobis dolorem quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.771839"], ["updated_at", "2020-05-05 17:28:05.771839"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Martine Gutmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oS9pTho0Ffx5YwKp0gba4.ywcNj.i4ZdWIYxuZb3GXctrdK5Yws3G"], ["created_at", "2020-05-05 17:28:05.774793"], ["updated_at", "2020-05-05 17:28:05.774793"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.48ms)
+Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2845)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.815519"], ["updated_at", "2020-05-05 17:28:05.815519"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[36mUserMeet Create (0.2ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.6ms)
+Completed 201 Created in 32ms (Views: 1.1ms | ActiveRecord: 1.6ms | Allocations: 6775)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (60.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Quibusdam deserunt rerum saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.901819"], ["updated_at", "2020-05-05 17:28:05.901819"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "excepturi"], ["description", "Explicabo repellat ea accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.907472"], ["updated_at", "2020-05-05 17:28:05.907472"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Consequuntur aspernatur autem ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.910377"], ["updated_at", "2020-05-05 17:28:05.910377"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Et quia aperiam dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.912976"], ["updated_at", "2020-05-05 17:28:05.912976"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Debitis et eum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.915587"], ["updated_at", "2020-05-05 17:28:05.915587"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "a"], ["description", "Nostrum consectetur facere qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.918777"], ["updated_at", "2020-05-05 17:28:05.918777"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Nihil quas excepturi ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.922326"], ["updated_at", "2020-05-05 17:28:05.922326"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nisi"], ["description", "Sit fugiat at dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.925273"], ["updated_at", "2020-05-05 17:28:05.925273"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quisquam"], ["description", "Reiciendis dignissimos et omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.927981"], ["updated_at", "2020-05-05 17:28:05.927981"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Dolorum a enim eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.931068"], ["updated_at", "2020-05-05 17:28:05.931068"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Lashay Aufderhar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cWQXlk7twvDpC.Y9gtlNkeZAvEwZaFSsMDNLZdqdkZZbolx8csTJa"], ["created_at", "2020-05-05 17:28:05.934393"], ["updated_at", "2020-05-05 17:28:05.934393"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.58ms)
+Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.948350"], ["updated_at", "2020-05-05 17:28:05.948350"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[36mUserMeet Create (0.3ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.69ms)
+Completed 201 Created in 7ms (Views: 1.3ms | ActiveRecord: 1.0ms | Allocations: 2251)
+ [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (33.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Nostrum rerum eligendi cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.993724"], ["updated_at", "2020-05-05 17:28:05.993724"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odio"], ["description", "Debitis ut numquam qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.997277"], ["updated_at", "2020-05-05 17:28:05.997277"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Ab quis atque voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:05.999385"], ["updated_at", "2020-05-05 17:28:05.999385"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Assumenda incidunt vel et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.005761"], ["updated_at", "2020-05-05 17:28:06.005761"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "totam"], ["description", "Qui impedit maxime sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.007434"], ["updated_at", "2020-05-05 17:28:06.007434"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quos"], ["description", "Eaque nam dolorem sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.008799"], ["updated_at", "2020-05-05 17:28:06.008799"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Dolore id eos molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.010201"], ["updated_at", "2020-05-05 17:28:06.010201"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "praesentium"], ["description", "Sed earum facilis suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.011510"], ["updated_at", "2020-05-05 17:28:06.011510"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Odio possimus accusamus cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.012933"], ["updated_at", "2020-05-05 17:28:06.012933"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Ut nisi odit sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.014208"], ["updated_at", "2020-05-05 17:28:06.014208"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Laverne Mante II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7V.88KgS4.JA9zNwk88Xbe58hQyqtW1uDApiBPGge.kTXXQ4UJXOC"], ["created_at", "2020-05-05 17:28:06.016823"], ["updated_at", "2020-05-05 17:28:06.016823"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.03ms)
+Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.2ms | Allocations: 2841)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:28:06 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 4090)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.3ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "adipisci"], ["description", "Nihil provident molestiae voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.044679"], ["updated_at", "2020-05-05 17:28:06.044679"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Doloremque autem at optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.047509"], ["updated_at", "2020-05-05 17:28:06.047509"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quam"], ["description", "Illo sed sit voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.049078"], ["updated_at", "2020-05-05 17:28:06.049078"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "possimus"], ["description", "Quisquam dignissimos nam dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.050420"], ["updated_at", "2020-05-05 17:28:06.050420"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Et velit aut eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.051731"], ["updated_at", "2020-05-05 17:28:06.051731"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Ratione dolorum atque voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.053071"], ["updated_at", "2020-05-05 17:28:06.053071"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Qui doloribus natus architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.054344"], ["updated_at", "2020-05-05 17:28:06.054344"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illo"], ["description", "Quia est nesciunt voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.055742"], ["updated_at", "2020-05-05 17:28:06.055742"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Voluptatem est et sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.057119"], ["updated_at", "2020-05-05 17:28:06.057119"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Corrupti sit magnam a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.058494"], ["updated_at", "2020-05-05 17:28:06.058494"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ms. Arcelia Schaefer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uSspVM6cidwasuZUM3EHEetHEuMxjkH.WoVFDDdU6k6dFnV/pANbu"], ["created_at", "2020-05-05 17:28:06.062026"], ["updated_at", "2020-05-05 17:28:06.062026"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.19ms)
+Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.4ms | Allocations: 2843)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:28:06 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 5ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 3697)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Placeat veniam illo quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.089588"], ["updated_at", "2020-05-05 17:28:06.089588"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Voluptas magnam nemo non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.092444"], ["updated_at", "2020-05-05 17:28:06.092444"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Corporis quia dolore placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.093966"], ["updated_at", "2020-05-05 17:28:06.093966"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Et ut atque aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.095326"], ["updated_at", "2020-05-05 17:28:06.095326"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nulla"], ["description", "Blanditiis esse tempore nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.096666"], ["updated_at", "2020-05-05 17:28:06.096666"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Totam est temporibus occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.098023"], ["updated_at", "2020-05-05 17:28:06.098023"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Iure libero minus a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.100114"], ["updated_at", "2020-05-05 17:28:06.100114"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "soluta"], ["description", "Expedita asperiores id quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.101954"], ["updated_at", "2020-05-05 17:28:06.101954"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "earum"], ["description", "Ut et id earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.103501"], ["updated_at", "2020-05-05 17:28:06.103501"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Sit voluptatum amet ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.105028"], ["updated_at", "2020-05-05 17:28:06.105028"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Arnoldo McGlynn II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$e9rJFRpFYFoj.TJlvTzsx.iwrEDZW.jB6O0hq4mIRshJNn4k9VoGi"], ["created_at", "2020-05-05 17:28:06.108886"], ["updated_at", "2020-05-05 17:28:06.108886"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.42ms)
+Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 14:28:06 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.1ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-05-05 17:28:06.125039"], ["id", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1090)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Est vitae at consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.135161"], ["updated_at", "2020-05-05 17:28:06.135161"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Odit ratione et nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.138076"], ["updated_at", "2020-05-05 17:28:06.138076"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "molestias"], ["description", "Illum ut quo iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.140109"], ["updated_at", "2020-05-05 17:28:06.140109"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Et a voluptatem amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.142150"], ["updated_at", "2020-05-05 17:28:06.142150"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rerum"], ["description", "Quae quia qui dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.144916"], ["updated_at", "2020-05-05 17:28:06.144916"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facere"], ["description", "Occaecati porro omnis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.146412"], ["updated_at", "2020-05-05 17:28:06.146412"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Sunt dolore et debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.147832"], ["updated_at", "2020-05-05 17:28:06.147832"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "pariatur"], ["description", "Ea totam quo magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.149371"], ["updated_at", "2020-05-05 17:28:06.149371"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Aspernatur consequuntur perferendis qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.150629"], ["updated_at", "2020-05-05 17:28:06.150629"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Reprehenderit vel et eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.151867"], ["updated_at", "2020-05-05 17:28:06.151867"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Reiko Prosacco"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eK7f.kt1WYDzDNlaSSHTTOWAFZkMkBbceRPdeRMBRalpSls9XEEWS"], ["created_at", "2020-05-05 17:28:06.154403"], ["updated_at", "2020-05-05 17:28:06.154403"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.01ms)
+Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms | Allocations: 2840)
+Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 14:28:06 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.1ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-05-05 17:28:06.167125"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (2.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Sit et magnam vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.177343"], ["updated_at", "2020-05-05 17:28:06.177343"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "suscipit"], ["description", "Vel possimus dolores tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.181544"], ["updated_at", "2020-05-05 17:28:06.181544"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Totam fuga alias doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.183765"], ["updated_at", "2020-05-05 17:28:06.183765"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Deserunt excepturi iste minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.185882"], ["updated_at", "2020-05-05 17:28:06.185882"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maiores"], ["description", "Laboriosam cumque quisquam cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.187472"], ["updated_at", "2020-05-05 17:28:06.187472"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellat"], ["description", "Minus ratione esse ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.188931"], ["updated_at", "2020-05-05 17:28:06.188931"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Rerum quisquam rerum explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.190774"], ["updated_at", "2020-05-05 17:28:06.190774"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "architecto"], ["description", "Blanditiis voluptatum corporis odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.192517"], ["updated_at", "2020-05-05 17:28:06.192517"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "delectus"], ["description", "Incidunt odio necessitatibus sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.193827"], ["updated_at", "2020-05-05 17:28:06.193827"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Consequuntur molestiae omnis exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:28:06.195164"], ["updated_at", "2020-05-05 17:28:06.195164"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Cristopher Hartmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fHPTNyEll9NqVaDg6tloMeFjENYMVwFEd./kzirvh1IAcTLZHTBva"], ["created_at", "2020-05-05 17:28:06.197784"], ["updated_at", "2020-05-05 17:28:06.197784"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:06 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.3ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.46ms)
+Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.4ms | Allocations: 2844)
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 14:28:06 -0300
+Processing by MeetsController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mUserMeet Load (0.1ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mMeet Destroy (0.1ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1221)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (4.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (123.3ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (108.1ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (118.8ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (97.3ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.6ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (97.9ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (97.5ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (155.0ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "Ut ut ex fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:38.913296"], ["updated_at", "2020-05-05 17:29:38.913296"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Amet qui dolor sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:38.917253"], ["updated_at", "2020-05-05 17:29:38.917253"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Rerum quas aut id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:38.930946"], ["updated_at", "2020-05-05 17:29:38.930946"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Occaecati aperiam unde minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:38.932916"], ["updated_at", "2020-05-05 17:29:38.932916"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "optio"], ["description", "Et mollitia illo velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:38.934320"], ["updated_at", "2020-05-05 17:29:38.934320"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "libero"], ["description", "Velit omnis voluptas accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:38.935657"], ["updated_at", "2020-05-05 17:29:38.935657"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "incidunt"], ["description", "Esse voluptate facilis iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:38.937107"], ["updated_at", "2020-05-05 17:29:38.937107"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "earum"], ["description", "Sed et iure eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:38.938459"], ["updated_at", "2020-05-05 17:29:38.938459"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Debitis facere consectetur recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:38.939766"], ["updated_at", "2020-05-05 17:29:38.939766"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odit"], ["description", "Dignissimos veritatis ex voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:38.941118"], ["updated_at", "2020-05-05 17:29:38.941118"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Ty Armstrong"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nJznuRXbl2HlJq9pqRIVVu7LMXqEDNbnq4vfR2oMF5bPmQeKK8hb."], ["created_at", "2020-05-05 17:29:38.958019"], ["updated_at", "2020-05-05 17:29:38.958019"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:38 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.4ms)
+Completed 200 OK in 12ms (Views: 9.5ms | ActiveRecord: 0.4ms | Allocations: 4082)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Qui excepturi autem molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.024608"], ["updated_at", "2020-05-05 17:29:39.024608"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Sed mollitia quis omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.028136"], ["updated_at", "2020-05-05 17:29:39.028136"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Distinctio dolor vitae dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.030561"], ["updated_at", "2020-05-05 17:29:39.030561"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Perferendis ut aut nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.032856"], ["updated_at", "2020-05-05 17:29:39.032856"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Ut nemo deleniti consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.035030"], ["updated_at", "2020-05-05 17:29:39.035030"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vel"], ["description", "Soluta illo autem minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.037251"], ["updated_at", "2020-05-05 17:29:39.037251"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Quia atque eum necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.039030"], ["updated_at", "2020-05-05 17:29:39.039030"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Voluptatem aut dicta cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.040334"], ["updated_at", "2020-05-05 17:29:39.040334"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Quia excepturi id non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.041596"], ["updated_at", "2020-05-05 17:29:39.041596"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "accusantium"], ["description", "Et rerum quas ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.042871"], ["updated_at", "2020-05-05 17:29:39.042871"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Barb Jaskolski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WcIy/OsvBUM5QM.CDG0Ieu2dt0T0OcXtM8KjNj21GxohdQlswB1na"], ["created_at", "2020-05-05 17:29:39.045599"], ["updated_at", "2020-05-05 17:29:39.045599"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.17ms)
+Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms | Allocations: 2844)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "facilis"], ["description", "Laborum accusamus eos doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.063728"], ["updated_at", "2020-05-05 17:29:39.063728"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Fuga enim omnis quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.067542"], ["updated_at", "2020-05-05 17:29:39.067542"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "exercitationem"], ["description", "Voluptatibus perferendis cumque distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.070003"], ["updated_at", "2020-05-05 17:29:39.070003"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "Quos commodi ut ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.071890"], ["updated_at", "2020-05-05 17:29:39.071890"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odio"], ["description", "Nisi non provident perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.073899"], ["updated_at", "2020-05-05 17:29:39.073899"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Occaecati deserunt temporibus nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.076264"], ["updated_at", "2020-05-05 17:29:39.076264"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nostrum"], ["description", "Dignissimos consequatur id quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.078669"], ["updated_at", "2020-05-05 17:29:39.078669"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Eius in cum magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.080111"], ["updated_at", "2020-05-05 17:29:39.080111"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "debitis"], ["description", "Cumque ullam quia esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.081391"], ["updated_at", "2020-05-05 17:29:39.081391"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "asperiores"], ["description", "Rerum iure odio sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.082738"], ["updated_at", "2020-05-05 17:29:39.082738"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Oren Reinger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ldyYBdSYvvvDwMSGd9D4d.sezaMp1svYgf1TBH7zxkHWZpOtqQ.ri"], ["created_at", "2020-05-05 17:29:39.085387"], ["updated_at", "2020-05-05 17:29:39.085387"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.93ms)
+Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms | Allocations: 2841)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.3ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (12.42ms)
+Completed 200 OK in 52ms (Views: 16.8ms | ActiveRecord: 0.8ms | Allocations: 7681)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Ad qui perferendis illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.156601"], ["updated_at", "2020-05-05 17:29:39.156601"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "At ea aut sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.160982"], ["updated_at", "2020-05-05 17:29:39.160982"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Dolor quod minima recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.162882"], ["updated_at", "2020-05-05 17:29:39.162882"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Praesentium aliquam velit vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.164264"], ["updated_at", "2020-05-05 17:29:39.164264"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aspernatur"], ["description", "Sint facilis et tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.165683"], ["updated_at", "2020-05-05 17:29:39.165683"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Voluptatem aut aut est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.166970"], ["updated_at", "2020-05-05 17:29:39.166970"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "occaecati"], ["description", "Vitae ut non laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.168426"], ["updated_at", "2020-05-05 17:29:39.168426"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Veritatis dolores sunt aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.169810"], ["updated_at", "2020-05-05 17:29:39.169810"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Autem beatae corporis iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.171149"], ["updated_at", "2020-05-05 17:29:39.171149"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "natus"], ["description", "Doloribus consequatur deleniti natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.173224"], ["updated_at", "2020-05-05 17:29:39.173224"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Latashia Cummerata"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kluL0.askY5Qvn3An/wiQe2FQ1.41InfaFw.tU9Wb967VdaRqnOdm"], ["created_at", "2020-05-05 17:29:39.177106"], ["updated_at", "2020-05-05 17:29:39.177106"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.17ms)
+Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2844)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.16ms)
+Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.3ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (42.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (3.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Tempore at voluptate quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.238144"], ["updated_at", "2020-05-05 17:29:39.238144"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Maiores inventore eveniet consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.245891"], ["updated_at", "2020-05-05 17:29:39.245891"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cum"], ["description", "Aliquam fuga id numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.249382"], ["updated_at", "2020-05-05 17:29:39.249382"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Quo ab velit vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.253307"], ["updated_at", "2020-05-05 17:29:39.253307"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Aut quos quod aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.257794"], ["updated_at", "2020-05-05 17:29:39.257794"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Rem ea adipisci id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.261908"], ["updated_at", "2020-05-05 17:29:39.261908"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dignissimos"], ["description", "Distinctio enim est quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.264052"], ["updated_at", "2020-05-05 17:29:39.264052"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "inventore"], ["description", "Tenetur neque blanditiis nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.266062"], ["updated_at", "2020-05-05 17:29:39.266062"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laudantium"], ["description", "Eum modi sint laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.268496"], ["updated_at", "2020-05-05 17:29:39.268496"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Officia neque iusto provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.270912"], ["updated_at", "2020-05-05 17:29:39.270912"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Tequila Jacobi"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Fi2x2pCf3l7AR8Qs2gQKeetlYA4P5GJcknfpRBYnEfpG.zdRZb8Nq"], ["created_at", "2020-05-05 17:29:39.275413"], ["updated_at", "2020-05-05 17:29:39.275413"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (6.84ms)
+Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms | Allocations: 2843)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms)
+Completed 404 Not Found in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 517)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "mollitia"], ["description", "Sint et neque totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.302760"], ["updated_at", "2020-05-05 17:29:39.302760"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Et nulla ut beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.305557"], ["updated_at", "2020-05-05 17:29:39.305557"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Neque unde eius quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.306999"], ["updated_at", "2020-05-05 17:29:39.306999"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "A similique odio adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.308513"], ["updated_at", "2020-05-05 17:29:39.308513"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "consequatur"], ["description", "Voluptatem aut accusantium culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.309902"], ["updated_at", "2020-05-05 17:29:39.309902"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Nemo quia possimus vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.311360"], ["updated_at", "2020-05-05 17:29:39.311360"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "omnis"], ["description", "Laboriosam soluta id consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.312910"], ["updated_at", "2020-05-05 17:29:39.312910"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Necessitatibus occaecati tempore qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.314685"], ["updated_at", "2020-05-05 17:29:39.314685"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Et sed sequi ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.316813"], ["updated_at", "2020-05-05 17:29:39.316813"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Ut ut voluptate sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.318303"], ["updated_at", "2020-05-05 17:29:39.318303"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Lourie Powlowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qixOWLtiSS/oOGzugWOY/eh6L33O7l3hmNLS7shkwijm5Qc1Q6VoG"], ["created_at", "2020-05-05 17:29:39.320926"], ["updated_at", "2020-05-05 17:29:39.320926"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.46ms)
+Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2841)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.4ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magni"], ["description", "Est deserunt eum a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.345427"], ["updated_at", "2020-05-05 17:29:39.345427"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Accusamus fugit id asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.349685"], ["updated_at", "2020-05-05 17:29:39.349685"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatum"], ["description", "Velit omnis dolorem molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.351352"], ["updated_at", "2020-05-05 17:29:39.351352"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Consequuntur aliquid quis sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.352792"], ["updated_at", "2020-05-05 17:29:39.352792"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nemo"], ["description", "Et incidunt et omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.354669"], ["updated_at", "2020-05-05 17:29:39.354669"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Dolore eos sint odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.356064"], ["updated_at", "2020-05-05 17:29:39.356064"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fuga"], ["description", "Est ipsam deleniti ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.357787"], ["updated_at", "2020-05-05 17:29:39.357787"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "at"], ["description", "Fuga quam sunt doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.360100"], ["updated_at", "2020-05-05 17:29:39.360100"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Qui dolor sed dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.361659"], ["updated_at", "2020-05-05 17:29:39.361659"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "Ad maxime numquam accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.363014"], ["updated_at", "2020-05-05 17:29:39.363014"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Rima Wilderman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZIHg4.hFA5AfAxOf5RCZReBiNsQ6mu2kgP5IEyDJ5ka1fa1W4uXM6"], ["created_at", "2020-05-05 17:29:39.365761"], ["updated_at", "2020-05-05 17:29:39.365761"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.9ms)
+Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 2841)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.406761"], ["updated_at", "2020-05-05 17:29:39.406761"], ["created_by", "1"]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[36mUserMeet Create (0.2ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.64ms)
+Completed 201 Created in 33ms (Views: 1.1ms | ActiveRecord: 1.5ms | Allocations: 6775)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eaque"], ["description", "Et rerum ex sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.433898"], ["updated_at", "2020-05-05 17:29:39.433898"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Tempora ullam aliquam saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.437191"], ["updated_at", "2020-05-05 17:29:39.437191"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Laboriosam ut mollitia labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.439470"], ["updated_at", "2020-05-05 17:29:39.439470"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Veniam et et tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.440947"], ["updated_at", "2020-05-05 17:29:39.440947"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Voluptas ipsum quos iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.443359"], ["updated_at", "2020-05-05 17:29:39.443359"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Ab doloremque eius odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.446104"], ["updated_at", "2020-05-05 17:29:39.446104"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quis"], ["description", "Dolorem aut facilis id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.449527"], ["updated_at", "2020-05-05 17:29:39.449527"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quod"], ["description", "Quia id eum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.453164"], ["updated_at", "2020-05-05 17:29:39.453164"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Eligendi vitae nihil eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.457787"], ["updated_at", "2020-05-05 17:29:39.457787"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Vero nobis voluptas ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.461666"], ["updated_at", "2020-05-05 17:29:39.461666"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Cornelius Block DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$I/75fxSOsZPgurgLlPGhD.D7bj9Yem3WolgXeRtH6dIhAqzmHuGV."], ["created_at", "2020-05-05 17:29:39.467439"], ["updated_at", "2020-05-05 17:29:39.467439"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.98ms)
+Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms | Allocations: 2841)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"max_members"=>"10", "created_by"=>"1", "duration"=>"2", "day"=>"Monday", "frequency"=>"Weekly", "title"=>"Learn Elm", "description"=>"This is a meeting for people learning Elm"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "Learn Elm"], ["description", "This is a meeting for people learning Elm"], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.481863"], ["updated_at", "2020-05-05 17:29:39.481863"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ?[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[36mUserMeet Create (0.2ms)[0m [1m[32mINSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?)[0m [["user_id", 1], ["meet_id", 11]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.46ms)
+Completed 201 Created in 6ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2251)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Consequuntur consectetur est iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.532152"], ["updated_at", "2020-05-05 17:29:39.532152"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Sequi numquam qui non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.537512"], ["updated_at", "2020-05-05 17:29:39.537512"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "at"], ["description", "At blanditiis hic ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.539613"], ["updated_at", "2020-05-05 17:29:39.539613"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "at"], ["description", "Eveniet consequatur distinctio voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.542098"], ["updated_at", "2020-05-05 17:29:39.542098"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Quisquam dolorem in aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.543505"], ["updated_at", "2020-05-05 17:29:39.543505"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolore"], ["description", "Hic blanditiis sequi sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.544870"], ["updated_at", "2020-05-05 17:29:39.544870"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repellendus"], ["description", "Necessitatibus mollitia voluptatum occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.546275"], ["updated_at", "2020-05-05 17:29:39.546275"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "unde"], ["description", "Ipsa ratione voluptate nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.547665"], ["updated_at", "2020-05-05 17:29:39.547665"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptate"], ["description", "Et in odio eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.548994"], ["updated_at", "2020-05-05 17:29:39.548994"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "velit"], ["description", "Ipsum voluptatem et enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.550462"], ["updated_at", "2020-05-05 17:29:39.550462"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Levi Kessler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sWnhwcueqY2zTrfYXS913uVXwDKcw/TZR0Fg4ouoeydGNEgeb9b6u"], ["created_at", "2020-05-05 17:29:39.553360"], ["updated_at", "2020-05-05 17:29:39.553360"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.87ms)
+Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms)
+Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 4090)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (10.5ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Dolor consequatur quo nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.584583"], ["updated_at", "2020-05-05 17:29:39.584583"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "A voluptates et itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.587400"], ["updated_at", "2020-05-05 17:29:39.587400"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sint"], ["description", "Consequatur animi omnis sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.588975"], ["updated_at", "2020-05-05 17:29:39.588975"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Quia quisquam et voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.590346"], ["updated_at", "2020-05-05 17:29:39.590346"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Praesentium repellat sint molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.591748"], ["updated_at", "2020-05-05 17:29:39.591748"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eligendi"], ["description", "Omnis dicta ex accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.593048"], ["updated_at", "2020-05-05 17:29:39.593048"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Rerum commodi natus pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.594518"], ["updated_at", "2020-05-05 17:29:39.594518"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Eum alias porro illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.596659"], ["updated_at", "2020-05-05 17:29:39.596659"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ullam"], ["description", "Pariatur quia assumenda unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.598449"], ["updated_at", "2020-05-05 17:29:39.598449"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "itaque"], ["description", "Quaerat cupiditate inventore quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.600553"], ["updated_at", "2020-05-05 17:29:39.600553"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Troy Wilderman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7MLPMy9aBk4rssF6Q3wTpeep3/gl.xZgIZ.9x4mANlWqhTzvrDMXm"], ["created_at", "2020-05-05 17:29:39.604165"], ["updated_at", "2020-05-05 17:29:39.604165"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.3ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started POST "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#create as HTML
+ Parameters: {"title"=>"Foobar"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms)
+Completed 422 Unprocessable Entity in 7ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3697)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "adipisci"], ["description", "Sunt sunt fugiat saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.629878"], ["updated_at", "2020-05-05 17:29:39.629878"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eos"], ["description", "Ipsa dolor distinctio et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.632688"], ["updated_at", "2020-05-05 17:29:39.632688"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Voluptatem alias rerum aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.634232"], ["updated_at", "2020-05-05 17:29:39.634232"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Doloribus nostrum sed doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.636584"], ["updated_at", "2020-05-05 17:29:39.636584"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatem"], ["description", "Et in harum sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.644675"], ["updated_at", "2020-05-05 17:29:39.644675"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nihil"], ["description", "Distinctio dolorem voluptatem odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.647515"], ["updated_at", "2020-05-05 17:29:39.647515"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Blanditiis itaque ipsam non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.650396"], ["updated_at", "2020-05-05 17:29:39.650396"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Ut est nemo rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.652833"], ["updated_at", "2020-05-05 17:29:39.652833"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "nobis"], ["description", "Vel rerum officia eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.654311"], ["updated_at", "2020-05-05 17:29:39.654311"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magnam"], ["description", "Non velit neque id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.657351"], ["updated_at", "2020-05-05 17:29:39.657351"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Mira Kilback"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1lu/5ykPxn0sYOOkHbzAjeFpY3u7YsXDEGX96VypqAIL25ffIIzZG"], ["created_at", "2020-05-05 17:29:39.661887"], ["updated_at", "2020-05-05 17:29:39.661887"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.68ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2841)
+Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-05-05 17:29:39.673581"], ["id", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1089)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Dolor qui esse impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.684822"], ["updated_at", "2020-05-05 17:29:39.684822"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Impedit omnis et ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.688181"], ["updated_at", "2020-05-05 17:29:39.688181"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quidem"], ["description", "Commodi blanditiis est consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.690546"], ["updated_at", "2020-05-05 17:29:39.690546"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sunt"], ["description", "At reprehenderit eaque eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.692053"], ["updated_at", "2020-05-05 17:29:39.692053"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Labore repudiandae nobis debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.693394"], ["updated_at", "2020-05-05 17:29:39.693394"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptates"], ["description", "Ex dignissimos voluptas dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.694819"], ["updated_at", "2020-05-05 17:29:39.694819"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Quo est non qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.697016"], ["updated_at", "2020-05-05 17:29:39.697016"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "eum"], ["description", "A minima asperiores earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.699183"], ["updated_at", "2020-05-05 17:29:39.699183"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "saepe"], ["description", "Sed tempora qui nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.701464"], ["updated_at", "2020-05-05 17:29:39.701464"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Ut ea perspiciatis rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.702895"], ["updated_at", "2020-05-05 17:29:39.702895"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Leandro Jast"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OhVm3M8gfYYIZapD2e2fEeO3Ufi3VIFKaKrsZ4P4uJv4VgelYr4TG"], ["created_at", "2020-05-05 17:29:39.705598"], ["updated_at", "2020-05-05 17:29:39.705598"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.16ms)
+Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#update as HTML
+ Parameters: {"title"=>"Shopping", "id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[31mUnpermitted parameter: :id[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Update (0.2ms)[0m [1m[33mUPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ?[0m [["title", "Shopping"], ["updated_at", "2020-05-05 17:29:39.716950"], ["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 998)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Sapiente inventore illum error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.727230"], ["updated_at", "2020-05-05 17:29:39.727230"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "maxime"], ["description", "Et mollitia quidem aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.731080"], ["updated_at", "2020-05-05 17:29:39.731080"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "rem"], ["description", "Quod quis nobis repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.732706"], ["updated_at", "2020-05-05 17:29:39.732706"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "est"], ["description", "Vero asperiores illo molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.734013"], ["updated_at", "2020-05-05 17:29:39.734013"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptatibus"], ["description", "Fuga aperiam sint distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.735556"], ["updated_at", "2020-05-05 17:29:39.735556"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sed"], ["description", "Praesentium iste ducimus qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.737375"], ["updated_at", "2020-05-05 17:29:39.737375"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "in"], ["description", "Ipsam rerum in esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.739597"], ["updated_at", "2020-05-05 17:29:39.739597"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "harum"], ["description", "A est aut quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.741283"], ["updated_at", "2020-05-05 17:29:39.741283"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Beatae consectetur nobis voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.743435"], ["updated_at", "2020-05-05 17:29:39.743435"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "assumenda"], ["description", "Animi est saepe architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 17:29:39.744863"], ["updated_at", "2020-05-05 17:29:39.744863"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Octavio Farrell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dBLV3DR8ekyJq5utgei8m.VmbnJeonucN0JoNJk8RqZCy0z95rImC"], ["created_at", "2020-05-05 17:29:39.747487"], ["updated_at", "2020-05-05 17:29:39.747487"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.35ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2843)
+Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 14:29:39 -0300
+Processing by MeetsController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mUserMeet Load (0.1ms)[0m [1m[34mSELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ?[0m [["meet_id", 1]]
+ [1m[36mMeet Destroy (0.1ms)[0m [1m[31mDELETE FROM "meets" WHERE "meets"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Completed 204 No Content in 3ms (ActiveRecord: 0.6ms | Allocations: 1221)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (19.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
+ [1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
+ [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA defer_foreign_keys = ON[0m
+ [1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
+ [1m[35m (137.2ms)[0m [1m[31mDELETE FROM "meetings";[0m
+ [1m[35m (0.5ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meetings';[0m
+ [1m[35m (94.3ms)[0m [1m[31mDELETE FROM "user_meets";[0m
+ [1m[35m (0.8ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meets';[0m
+ [1m[35m (118.2ms)[0m [1m[31mDELETE FROM "user_meetings";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'user_meetings';[0m
+ [1m[35m (121.5ms)[0m [1m[31mDELETE FROM "meets";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'meets';[0m
+ [1m[35m (113.9ms)[0m [1m[31mDELETE FROM "conversations";[0m
+ [1m[35m (0.9ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.8ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'conversations';[0m
+ [1m[35m (78.3ms)[0m [1m[31mDELETE FROM "messagems";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.5ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'messagems';[0m
+ [1m[35m (81.8ms)[0m [1m[31mDELETE FROM "users";[0m
+ [1m[35m (0.6ms)[0m [1m[34mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
+ [1m[35m (0.7ms)[0m [1m[31mDELETE FROM sqlite_sequence where name = 'users';[0m
+ [1m[35m (0.3ms)[0m [1m[35mPRAGMA defer_foreign_keys = 0[0m
+ [1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (20.8ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Nila Maggio Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kmzxgVdNEy6MXPqNQfTwO.93AU/takHOex/nqTSh7g6SCFGTlRr/W"], ["created_at", "2020-05-05 18:15:08.141338"], ["updated_at", "2020-05-05 18:15:08.141338"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "voluptas"], ["description", "Iste totam aut voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:08.210032"], ["updated_at", "2020-05-05 18:15:08.210032"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Praesentium impedit enim voluptatem?"], ["description", "Ratione libero dolor expedita."], ["date", "2020-05-06 18:15:08.266238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.350979"], ["updated_at", "2020-05-05 18:15:08.350979"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dignissimos dolorum et quo?"], ["description", "Sint id impedit voluptatem."], ["date", "2020-05-06 18:15:08.352711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.353476"], ["updated_at", "2020-05-05 18:15:08.353476"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatem perferendis adipisci eveniet?"], ["description", "Corporis labore ducimus laborum."], ["date", "2020-05-06 18:15:08.355073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.355901"], ["updated_at", "2020-05-05 18:15:08.355901"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Debitis est sit occaecati?"], ["description", "Dolores sunt sapiente possimus."], ["date", "2020-05-06 18:15:08.357332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.358095"], ["updated_at", "2020-05-05 18:15:08.358095"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sunt voluptatem aut enim?"], ["description", "Harum numquam asperiores iste."], ["date", "2020-05-06 18:15:08.359351"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.360046"], ["updated_at", "2020-05-05 18:15:08.360046"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Id ut ex doloremque?"], ["description", "Et fugit repellat non."], ["date", "2020-05-06 18:15:08.361257"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.361943"], ["updated_at", "2020-05-05 18:15:08.361943"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Error aut aliquid iusto?"], ["description", "Voluptatibus ipsam deleniti aut."], ["date", "2020-05-06 18:15:08.363121"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.365466"], ["updated_at", "2020-05-05 18:15:08.365466"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Veritatis laudantium corporis autem?"], ["description", "Ea voluptatem id placeat."], ["date", "2020-05-06 18:15:08.367361"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.368397"], ["updated_at", "2020-05-05 18:15:08.368397"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Veritatis et assumenda quos?"], ["description", "Est voluptatem repellendus explicabo."], ["date", "2020-05-06 18:15:08.369849"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.370726"], ["updated_at", "2020-05-05 18:15:08.370726"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Eos autem labore possimus?"], ["description", "Reiciendis voluptas architecto qui."], ["date", "2020-05-06 18:15:08.372707"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.373590"], ["updated_at", "2020-05-05 18:15:08.373590"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Soluta nihil sit provident?"], ["description", "Sit est blanditiis et."], ["date", "2020-05-06 18:15:08.374890"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.375589"], ["updated_at", "2020-05-05 18:15:08.375589"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Incidunt ut saepe repellendus?"], ["description", "Repudiandae qui aperiam harum."], ["date", "2020-05-06 18:15:08.376901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.377638"], ["updated_at", "2020-05-05 18:15:08.377638"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Id nisi corrupti non?"], ["description", "Deserunt veniam quis recusandae."], ["date", "2020-05-06 18:15:08.378900"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.379608"], ["updated_at", "2020-05-05 18:15:08.379608"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Recusandae dicta sit eaque?"], ["description", "Perferendis a sit consequatur."], ["date", "2020-05-06 18:15:08.380903"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.381617"], ["updated_at", "2020-05-05 18:15:08.381617"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sunt dolorem doloribus dolores?"], ["description", "Quis assumenda animi rerum."], ["date", "2020-05-06 18:15:08.382891"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.383733"], ["updated_at", "2020-05-05 18:15:08.383733"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Omnis quia atque velit?"], ["description", "Accusantium rerum et harum."], ["date", "2020-05-06 18:15:08.385761"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.386709"], ["updated_at", "2020-05-05 18:15:08.386709"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Harum dolorem nesciunt error?"], ["description", "Aspernatur et excepturi in."], ["date", "2020-05-06 18:15:08.388118"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.388852"], ["updated_at", "2020-05-05 18:15:08.388852"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Hic odio odit error?"], ["description", "Quis velit et doloremque."], ["date", "2020-05-06 18:15:08.390048"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.391064"], ["updated_at", "2020-05-05 18:15:08.391064"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ea aut sapiente blanditiis?"], ["description", "Quisquam aspernatur magnam officia."], ["date", "2020-05-06 18:15:08.392325"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.393027"], ["updated_at", "2020-05-05 18:15:08.393027"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et quo aut delectus?"], ["description", "Consequatur omnis quo nam."], ["date", "2020-05-06 18:15:08.394188"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.394834"], ["updated_at", "2020-05-05 18:15:08.394834"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:15:08 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.5ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (19.76ms)
+Completed 200 OK in 164ms (Views: 45.3ms | ActiveRecord: 1.1ms | Allocations: 8643)
+ [1m[35m (0.5ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (18.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (1.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Antonia Leannon MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nqIyT5aMRspjcOgEs5PvlOwf7JSfyqmGUk2UU9S8dUXeQn1HJ/uvu"], ["created_at", "2020-05-05 18:15:08.786730"], ["updated_at", "2020-05-05 18:15:08.786730"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Qui sit et esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:08.790296"], ["updated_at", "2020-05-05 18:15:08.790296"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptas earum est non?"], ["description", "Dolor ex quia et."], ["date", "2020-05-06 18:15:08.791913"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.792977"], ["updated_at", "2020-05-05 18:15:08.792977"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Molestias aut quia quia?"], ["description", "Quia voluptatum molestiae qui."], ["date", "2020-05-06 18:15:08.836146"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.838110"], ["updated_at", "2020-05-05 18:15:08.838110"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Esse fuga non et?"], ["description", "Quia eaque officia quaerat."], ["date", "2020-05-06 18:15:08.840436"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.841739"], ["updated_at", "2020-05-05 18:15:08.841739"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Debitis tenetur assumenda explicabo?"], ["description", "Voluptate sed eius iusto."], ["date", "2020-05-06 18:15:08.843496"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.844639"], ["updated_at", "2020-05-05 18:15:08.844639"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Assumenda dolorem amet sit?"], ["description", "Vitae iure sit voluptatem."], ["date", "2020-05-06 18:15:08.847105"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.849696"], ["updated_at", "2020-05-05 18:15:08.849696"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Adipisci minima sit possimus?"], ["description", "Dolorem laboriosam nesciunt illo."], ["date", "2020-05-06 18:15:08.851269"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.852115"], ["updated_at", "2020-05-05 18:15:08.852115"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Itaque debitis repudiandae non?"], ["description", "Qui corrupti voluptatum error."], ["date", "2020-05-06 18:15:08.853297"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.853967"], ["updated_at", "2020-05-05 18:15:08.853967"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quia impedit qui dignissimos?"], ["description", "Qui consectetur pariatur perferendis."], ["date", "2020-05-06 18:15:08.855238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.856033"], ["updated_at", "2020-05-05 18:15:08.856033"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Id praesentium est architecto?"], ["description", "Ab pariatur eos animi."], ["date", "2020-05-06 18:15:08.857326"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.858036"], ["updated_at", "2020-05-05 18:15:08.858036"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Consequuntur voluptatem dignissimos porro?"], ["description", "Vero quas ut cum."], ["date", "2020-05-06 18:15:08.859812"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.860871"], ["updated_at", "2020-05-05 18:15:08.860871"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.4ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ratione et ex eligendi?"], ["description", "Ex quidem voluptatem cum."], ["date", "2020-05-06 18:15:08.862603"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.863548"], ["updated_at", "2020-05-05 18:15:08.863548"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sit sit veritatis odit?"], ["description", "Sapiente eum quaerat facilis."], ["date", "2020-05-06 18:15:08.865664"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.866827"], ["updated_at", "2020-05-05 18:15:08.866827"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Corrupti velit incidunt architecto?"], ["description", "Pariatur non laborum accusamus."], ["date", "2020-05-06 18:15:08.868808"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.869771"], ["updated_at", "2020-05-05 18:15:08.869771"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Perspiciatis in suscipit nulla?"], ["description", "Ratione sed similique non."], ["date", "2020-05-06 18:15:08.871195"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.871901"], ["updated_at", "2020-05-05 18:15:08.871901"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et dolores esse ipsam?"], ["description", "Fugiat iste sapiente repudiandae."], ["date", "2020-05-06 18:15:08.873003"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.873686"], ["updated_at", "2020-05-05 18:15:08.873686"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Nihil dolores quo qui?"], ["description", "Placeat id sint eos."], ["date", "2020-05-06 18:15:08.874914"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.875771"], ["updated_at", "2020-05-05 18:15:08.875771"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Nemo quaerat asperiores blanditiis?"], ["description", "Et recusandae et beatae."], ["date", "2020-05-06 18:15:08.877128"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.877894"], ["updated_at", "2020-05-05 18:15:08.877894"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Excepturi sunt aliquid est?"], ["description", "Quia et dicta dolor."], ["date", "2020-05-06 18:15:08.879030"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.879739"], ["updated_at", "2020-05-05 18:15:08.879739"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dolores error vel et?"], ["description", "Voluptatem unde distinctio quaerat."], ["date", "2020-05-06 18:15:08.880983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.881850"], ["updated_at", "2020-05-05 18:15:08.881850"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Doloremque et voluptatem repellat?"], ["description", "Explicabo et quasi laboriosam."], ["date", "2020-05-06 18:15:08.883605"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.884490"], ["updated_at", "2020-05-05 18:15:08.884490"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:15:08 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Load (0.1ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.4ms)
+Completed 200 OK in 13ms (Views: 10.3ms | ActiveRecord: 0.3ms | Allocations: 5513)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.4ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (1.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Tam Rutherford"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dtrAc/KiBtqO4cXmD1G7.O1MKfPWq9aXmJKhY.UTVwZPZmmLQaYGi"], ["created_at", "2020-05-05 18:15:08.938203"], ["updated_at", "2020-05-05 18:15:08.938203"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corporis"], ["description", "Sint sapiente ipsam et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:08.941213"], ["updated_at", "2020-05-05 18:15:08.941213"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Esse iure deserunt porro?"], ["description", "Quis quas neque vel."], ["date", "2020-05-06 18:15:08.942718"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.943727"], ["updated_at", "2020-05-05 18:15:08.943727"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Rem cumque porro magni?"], ["description", "Aut consectetur dolorum ea."], ["date", "2020-05-06 18:15:08.945081"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.945823"], ["updated_at", "2020-05-05 18:15:08.945823"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quis sit optio non?"], ["description", "Vel maxime assumenda commodi."], ["date", "2020-05-06 18:15:08.948925"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.950388"], ["updated_at", "2020-05-05 18:15:08.950388"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quidem quo velit aperiam?"], ["description", "Soluta corrupti saepe doloribus."], ["date", "2020-05-06 18:15:08.951841"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.952737"], ["updated_at", "2020-05-05 18:15:08.952737"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Fugit sequi rem quo?"], ["description", "Aut architecto non eligendi."], ["date", "2020-05-06 18:15:08.954275"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.955389"], ["updated_at", "2020-05-05 18:15:08.955389"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Vel qui aliquid molestiae?"], ["description", "Eligendi et dolorem est."], ["date", "2020-05-06 18:15:08.956914"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.957755"], ["updated_at", "2020-05-05 18:15:08.957755"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Voluptatibus explicabo ut et?"], ["description", "Voluptates harum est nisi."], ["date", "2020-05-06 18:15:08.959037"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.959735"], ["updated_at", "2020-05-05 18:15:08.959735"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Molestiae ex nihil aut?"], ["description", "Perferendis facere ipsa repudiandae."], ["date", "2020-05-06 18:15:08.960903"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.961599"], ["updated_at", "2020-05-05 18:15:08.961599"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Velit minus nam iure?"], ["description", "Atque sapiente voluptatem quos."], ["date", "2020-05-06 18:15:08.962730"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.963402"], ["updated_at", "2020-05-05 18:15:08.963402"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.5ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Cumque sint doloremque natus?"], ["description", "Exercitationem qui aliquid et."], ["date", "2020-05-06 18:15:08.965295"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.966825"], ["updated_at", "2020-05-05 18:15:08.966825"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.6ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quia et non corporis?"], ["description", "Modi in at et."], ["date", "2020-05-06 18:15:08.970264"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.971873"], ["updated_at", "2020-05-05 18:15:08.971873"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Alias rerum reiciendis mollitia?"], ["description", "Illo sit voluptate amet."], ["date", "2020-05-06 18:15:08.974793"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.977050"], ["updated_at", "2020-05-05 18:15:08.977050"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ea in aut vero?"], ["description", "Fugit vero dolores qui."], ["date", "2020-05-06 18:15:08.978580"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.979351"], ["updated_at", "2020-05-05 18:15:08.979351"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Laborum non deserunt dolor?"], ["description", "Quia qui repellat ut."], ["date", "2020-05-06 18:15:08.980578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.981271"], ["updated_at", "2020-05-05 18:15:08.981271"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Explicabo nulla ducimus saepe?"], ["description", "Et unde non veritatis."], ["date", "2020-05-06 18:15:08.982487"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.983183"], ["updated_at", "2020-05-05 18:15:08.983183"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Ea et non cupiditate?"], ["description", "Optio qui omnis excepturi."], ["date", "2020-05-06 18:15:08.984324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.985006"], ["updated_at", "2020-05-05 18:15:08.985006"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Non ipsam molestiae quidem?"], ["description", "Ut et dicta repellendus."], ["date", "2020-05-06 18:15:08.986236"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.987282"], ["updated_at", "2020-05-05 18:15:08.987282"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Id praesentium non alias?"], ["description", "Quia possimus ullam nihil."], ["date", "2020-05-06 18:15:08.989451"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.990622"], ["updated_at", "2020-05-05 18:15:08.990622"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Fuga quae et ipsam?"], ["description", "Perferendis non asperiores omnis."], ["date", "2020-05-06 18:15:08.992103"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.992789"], ["updated_at", "2020-05-05 18:15:08.992789"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Odit et et ut?"], ["description", "Eveniet ut enim accusamus."], ["date", "2020-05-06 18:15:08.993943"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:08.994613"], ["updated_at", "2020-05-05 18:15:08.994613"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:15:08 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms)
+Completed 404 Not Found in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 865)
+ [1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (1.4ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Letty Kub"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jBuwtc8o3DT1kL8McLrk3.c4eztyAETRmCGeQGvWPGxtPePmgXjXe"], ["created_at", "2020-05-05 18:15:09.015341"], ["updated_at", "2020-05-05 18:15:09.015341"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Amet aliquid qui illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.019556"], ["updated_at", "2020-05-05 18:15:09.019556"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Perferendis et quibusdam illo?"], ["description", "Et dolore in sint."], ["date", "2020-05-06 18:15:09.021389"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.022327"], ["updated_at", "2020-05-05 18:15:09.022327"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Est fuga et beatae?"], ["description", "Id ea dolor blanditiis."], ["date", "2020-05-06 18:15:09.023645"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.024398"], ["updated_at", "2020-05-05 18:15:09.024398"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Fuga rem voluptatibus quaerat?"], ["description", "Fugit tenetur qui expedita."], ["date", "2020-05-06 18:15:09.025738"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.026498"], ["updated_at", "2020-05-05 18:15:09.026498"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Facere ratione consequatur corporis?"], ["description", "Ut sit et velit."], ["date", "2020-05-06 18:15:09.028203"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.030051"], ["updated_at", "2020-05-05 18:15:09.030051"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dolores et consequuntur est?"], ["description", "Quae vel aut blanditiis."], ["date", "2020-05-06 18:15:09.032825"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.034014"], ["updated_at", "2020-05-05 18:15:09.034014"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Perspiciatis voluptas architecto optio?"], ["description", "Omnis qui iure pariatur."], ["date", "2020-05-06 18:15:09.035417"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.036176"], ["updated_at", "2020-05-05 18:15:09.036176"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Assumenda ut commodi et?"], ["description", "Aut qui autem error."], ["date", "2020-05-06 18:15:09.037373"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.038065"], ["updated_at", "2020-05-05 18:15:09.038065"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Laborum ut ratione ea?"], ["description", "Ut voluptas ipsa doloribus."], ["date", "2020-05-06 18:15:09.039298"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.040010"], ["updated_at", "2020-05-05 18:15:09.040010"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.7ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dolore excepturi ut tempore?"], ["description", "Magni iste doloremque maiores."], ["date", "2020-05-06 18:15:09.041207"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.041890"], ["updated_at", "2020-05-05 18:15:09.041890"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Expedita sequi quis quos?"], ["description", "Quasi voluptate minima qui."], ["date", "2020-05-06 18:15:09.043673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.044415"], ["updated_at", "2020-05-05 18:15:09.044415"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Atque ipsam incidunt qui?"], ["description", "Et optio sit quo."], ["date", "2020-05-06 18:15:09.045647"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.046417"], ["updated_at", "2020-05-05 18:15:09.046417"]]
+ [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Aut non veniam et?"], ["description", "Voluptatem dolores modi quo."], ["date", "2020-05-06 18:15:09.049084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.050656"], ["updated_at", "2020-05-05 18:15:09.050656"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Quos molestiae sunt in?"], ["description", "Minus perferendis sit eum."], ["date", "2020-05-06 18:15:09.052456"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.053276"], ["updated_at", "2020-05-05 18:15:09.053276"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Maxime ut magni doloribus?"], ["description", "Non et sint fugit."], ["date", "2020-05-06 18:15:09.054446"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.055133"], ["updated_at", "2020-05-05 18:15:09.055133"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Deserunt voluptatem et pariatur?"], ["description", "Molestiae fugit facilis exercitationem."], ["date", "2020-05-06 18:15:09.056347"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.057130"], ["updated_at", "2020-05-05 18:15:09.057130"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sequi eveniet repellendus dolore?"], ["description", "Aut itaque quidem ipsam."], ["date", "2020-05-06 18:15:09.058366"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.059075"], ["updated_at", "2020-05-05 18:15:09.059075"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.1ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Et et rerum provident?"], ["description", "Voluptates corporis et modi."], ["date", "2020-05-06 18:15:09.060260"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.060940"], ["updated_at", "2020-05-05 18:15:09.060940"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Sit porro qui blanditiis?"], ["description", "At aut consequatur voluptatem."], ["date", "2020-05-06 18:15:09.062084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.062749"], ["updated_at", "2020-05-05 18:15:09.062749"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.2ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Dolore officiis voluptatem et?"], ["description", "Accusamus quidem sed voluptatem."], ["date", "2020-05-06 18:15:09.064645"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.065695"], ["updated_at", "2020-05-05 18:15:09.065695"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeeting Create (0.3ms)[0m [1m[32mINSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["title", "Similique repellat fuga et?"], ["description", "Rerum cupiditate ut quas."], ["date", "2020-05-06 18:15:09.067101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:09.068004"], ["updated_at", "2020-05-05 18:15:09.068004"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:15:09 -0300
+Processing by MeetingsController#index as HTML
+ Parameters: {"meet_id"=>"0"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 0], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 509)
+ [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (8.2ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Iure qui recusandae velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.104396"], ["updated_at", "2020-05-05 18:15:09.104396"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "cumque"], ["description", "Quia nisi vel consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.107559"], ["updated_at", "2020-05-05 18:15:09.107559"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "In aut aperiam voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.110569"], ["updated_at", "2020-05-05 18:15:09.110569"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "et"], ["description", "Fugiat consequatur voluptas adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.112789"], ["updated_at", "2020-05-05 18:15:09.112789"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "earum"], ["description", "Aspernatur ad velit rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.114206"], ["updated_at", "2020-05-05 18:15:09.114206"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "culpa"], ["description", "Voluptatem quis quia illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.116068"], ["updated_at", "2020-05-05 18:15:09.116068"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "tenetur"], ["description", "Laborum omnis assumenda aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.117925"], ["updated_at", "2020-05-05 18:15:09.117925"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ea"], ["description", "Cupiditate architecto quo ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.119170"], ["updated_at", "2020-05-05 18:15:09.119170"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Blanditiis dignissimos repellat corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.120514"], ["updated_at", "2020-05-05 18:15:09.120514"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Aut cumque sed et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.121792"], ["updated_at", "2020-05-05 18:15:09.121792"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Isreal Grady"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9xoVolJBfPiNz2zNN8AwlukOMj2N9FPFZGMs1G3pWNA6dG2aQdDMa"], ["created_at", "2020-05-05 18:15:09.124463"], ["updated_at", "2020-05-05 18:15:09.124463"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.2ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.02ms)
+Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.3ms | Allocations: 3007)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.0ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.7ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "alias"], ["description", "Repudiandae architecto doloribus dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.158942"], ["updated_at", "2020-05-05 18:15:09.158942"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Sit vitae quibusdam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.162591"], ["updated_at", "2020-05-05 18:15:09.162591"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "architecto"], ["description", "Rem sint consequatur unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.165254"], ["updated_at", "2020-05-05 18:15:09.165254"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iure"], ["description", "Voluptatem consectetur facilis fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.166978"], ["updated_at", "2020-05-05 18:15:09.166978"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aut"], ["description", "Vero ratione non est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.168498"], ["updated_at", "2020-05-05 18:15:09.168498"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "error"], ["description", "Repudiandae qui quidem reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.171225"], ["updated_at", "2020-05-05 18:15:09.171225"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Iste nesciunt veniam cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.173482"], ["updated_at", "2020-05-05 18:15:09.173482"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolores"], ["description", "In aut magnam quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.175116"], ["updated_at", "2020-05-05 18:15:09.175116"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "illum"], ["description", "Vero magni ex nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.176616"], ["updated_at", "2020-05-05 18:15:09.176616"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "ut"], ["description", "Alias dolore occaecati quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.178093"], ["updated_at", "2020-05-05 18:15:09.178093"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Dr. Joey Kling"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ANMlIzUKy947ZHeYlONoIemrT/IQZF.tdXi8sj5z.OydiW1BC4ZO6"], ["created_at", "2020-05-05 18:15:09.180984"], ["updated_at", "2020-05-05 18:15:09.180984"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.38ms)
+Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2843)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.5ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "atque"], ["description", "Quia voluptate tempore est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.199398"], ["updated_at", "2020-05-05 18:15:09.199398"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "magni"], ["description", "Et suscipit enim in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.203068"], ["updated_at", "2020-05-05 18:15:09.203068"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "qui"], ["description", "Corrupti quidem tempora sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.205291"], ["updated_at", "2020-05-05 18:15:09.205291"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "repudiandae"], ["description", "Vel qui praesentium repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.206759"], ["updated_at", "2020-05-05 18:15:09.206759"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "corrupti"], ["description", "Rem illum vero aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.208145"], ["updated_at", "2020-05-05 18:15:09.208145"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "id"], ["description", "Ab eum ipsam ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.210412"], ["updated_at", "2020-05-05 18:15:09.210412"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolorem"], ["description", "Nobis suscipit facilis nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.212309"], ["updated_at", "2020-05-05 18:15:09.212309"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "labore"], ["description", "Temporibus eos sed incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.214897"], ["updated_at", "2020-05-05 18:15:09.214897"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Illum aut autem voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.216730"], ["updated_at", "2020-05-05 18:15:09.216730"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laboriosam"], ["description", "Debitis ullam et optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.218080"], ["updated_at", "2020-05-05 18:15:09.218080"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Miss Janeen Hermiston"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YJ10iVjRaE1zrzxn8H9Ppu0v1sPquJqX5DUdR84HcKX4h9wIvUJa2"], ["created_at", "2020-05-05 18:15:09.220741"], ["updated_at", "2020-05-05 18:15:09.220741"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.71ms)
+Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2842)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:15:09 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.27ms)
+Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 0.3ms | Allocations: 1242)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "earum"], ["description", "Similique delectus et quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.243806"], ["updated_at", "2020-05-05 18:15:09.243806"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "explicabo"], ["description", "Dolorem sunt dolores beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.247638"], ["updated_at", "2020-05-05 18:15:09.247638"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quo"], ["description", "Dolores eligendi non sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.250727"], ["updated_at", "2020-05-05 18:15:09.250727"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "aperiam"], ["description", "Minus impedit aliquam quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.252621"], ["updated_at", "2020-05-05 18:15:09.252621"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iste"], ["description", "Illum accusamus placeat quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.254027"], ["updated_at", "2020-05-05 18:15:09.254027"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quia"], ["description", "Animi repudiandae cum architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.255762"], ["updated_at", "2020-05-05 18:15:09.255762"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "provident"], ["description", "Et nemo sit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.258126"], ["updated_at", "2020-05-05 18:15:09.258126"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "iusto"], ["description", "Vitae voluptatibus nisi nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.259538"], ["updated_at", "2020-05-05 18:15:09.259538"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officiis"], ["description", "Omnis illo quod velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.260812"], ["updated_at", "2020-05-05 18:15:09.260812"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Voluptates nisi et deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.262150"], ["updated_at", "2020-05-05 18:15:09.262150"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Franklyn Murazik"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.H4bOKLLfh27X3TYlos1beAzvwF..j27l1CGN1/wMarz/IeOYHyg2"], ["created_at", "2020-05-05 18:15:09.265054"], ["updated_at", "2020-05-05 18:15:09.265054"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.58ms)
+Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:15:09 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+[active_model_serializers] [1m[36mMeeting Load (0.0ms)[0m [1m[34mSELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ?[0m [["meet_id", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.13ms)
+Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.2ms | Allocations: 1240)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (26.9ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.9ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "amet"], ["description", "Facere eum corporis autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.308784"], ["updated_at", "2020-05-05 18:15:09.308784"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "enim"], ["description", "Minima sed asperiores non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.313522"], ["updated_at", "2020-05-05 18:15:09.313522"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "officia"], ["description", "Quia tempore qui qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.316436"], ["updated_at", "2020-05-05 18:15:09.316436"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "placeat"], ["description", "Ut quod aut numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.318007"], ["updated_at", "2020-05-05 18:15:09.318007"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "veniam"], ["description", "Delectus itaque totam omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.319471"], ["updated_at", "2020-05-05 18:15:09.319471"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "vitae"], ["description", "Vel neque non laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.320826"], ["updated_at", "2020-05-05 18:15:09.320826"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "sit"], ["description", "Doloremque sint impedit officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.322374"], ["updated_at", "2020-05-05 18:15:09.322374"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "beatae"], ["description", "Aut voluptatem quia dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.324291"], ["updated_at", "2020-05-05 18:15:09.324291"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "dolor"], ["description", "Voluptatem aut minus non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.325848"], ["updated_at", "2020-05-05 18:15:09.325848"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "perferendis"], ["description", "Qui beatae perferendis reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.327499"], ["updated_at", "2020-05-05 18:15:09.327499"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Eulalia Schowalter V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9Ah3Wd1AwOR8ARDaQpux6eUvzxkXzjJj/nYIAGEtiKC8rxH8Rh4s2"], ["created_at", "2020-05-05 18:15:09.331430"], ["updated_at", "2020-05-05 18:15:09.331430"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #
+[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.78ms)
+Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms | Allocations: 2844)
+Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:15:09 -0300
+Processing by MeetsController#show as HTML
+ Parameters: {"id"=>"100"}
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.0ms)[0m [1m[34mSELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ?[0m [["id", 100], ["LIMIT", 1]]
+[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms)
+Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512)
+ [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
+ [1m[35m (7.1ms)[0m [1m[31mrollback transaction[0m
+ [1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (1.3ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "porro"], ["description", "Et deleniti aperiam vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.356087"], ["updated_at", "2020-05-05 18:15:09.356087"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "quae"], ["description", "Quia sint sed voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.359584"], ["updated_at", "2020-05-05 18:15:09.359584"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "odio"], ["description", "Sed facere voluptatem corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.361385"], ["updated_at", "2020-05-05 18:15:09.361385"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "minima"], ["description", "Praesentium odio voluptatum aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.362873"], ["updated_at", "2020-05-05 18:15:09.362873"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "blanditiis"], ["description", "Odit provident hic iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.364680"], ["updated_at", "2020-05-05 18:15:09.364680"], ["created_by", "1"]]
+ [1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "expedita"], ["description", "Natus vel qui dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.366858"], ["updated_at", "2020-05-05 18:15:09.366858"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "fugit"], ["description", "Doloribus sunt rerum voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.368790"], ["updated_at", "2020-05-05 18:15:09.368790"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "recusandae"], ["description", "Non quod corrupti est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.371877"], ["updated_at", "2020-05-05 18:15:09.371877"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.2ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "laborum"], ["description", "Optio ad ut sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.374002"], ["updated_at", "2020-05-05 18:15:09.374002"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mMeet Create (0.1ms)[0m [1m[32mINSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["title", "reprehenderit"], ["description", "Et voluptatum at facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.377252"], ["updated_at", "2020-05-05 18:15:09.377252"], ["created_by", "1"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+ [1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
+ [1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Lavern Gislason"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xfp1B7RoL1ZAj5ol9uuEOu.vVDT3C2wd39mcBgD7LJqb7U3Ns35ra"], ["created_at", "2020-05-05 18:15:09.380549"], ["updated_at", "2020-05-05 18:15:09.380549"], ["picture", "https://joeschmoe.io/api/v1/jane"]]
+ [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
+Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300
+Processing by MeetsController#index as HTML
+ [1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
+ [1m[36mMeet Load (0.1ms)[0m [1m[34mSELECT "meets".* FROM "meets"[0m
+No serializer found for resource: #